SlideShare a Scribd company logo
Rob Brooks-Bilson | @styggiti | rob.brooks-bilson.com
cf.Objective() 2014
About Me
 Sr. Director at Amkor Technology
 Involved with ColdFusion for 18
years
 Author of the O’Reilly’s books:
Programming ColdFusion
Programming ColdFusion MX
 Adobe Community Professional
for ColdFusion
 Food Geek
 Bed Jumper
 Photographer
More ColdFusion Goodness
Agenda
What We’ll Cover And What We Wont…
 What is caching?
 What’s Ehcache?
 Caching tags and functions
 Any questions from Dan Wilson
 Disclaimer
 Caching Evolution in ColdFusion
 Scale Up vs. Scale Out
 Caching Architecture Review
 Replicated Cache
 BigMemory Go
 Distributed Cache
 Terracotta Management Console
Legal Mumbo Jumbo: The Disclaimer
 Much of what you’re about to see makes use of third-party libraries and
applications
 Some of it requires you to upgrade versions of libraries that ship with
ColdFusion
 There are bugs
 There are workarounds
 There is no official support from Adobe for much of what you’re about to
see
Ehcache Implementation : Caching Evolution
Core cache
Ehcache 1.6
9.0
 Page caching
 Fragment caching
 Caching objects and data
 ORM caching
 Improved Hibernate plug-in,
management, XA transactions,
write-behind, bulk load, …
 Snap-in support for
distributed caching, via easy
upgrade to Enterprise
Ehcache
Ehcache 2.0
9.1
 New and enhanced functions:
cacheGetSession,
cacheGetMetadata
 Support for new configuration
properties
 User-defined caches
 copyOnRead &copyOnWrite,
Explicit locking API, Nonstop
Cache, Cache Search
 New consistency modes:
Strong and Eventual
 Automatic Resource Control
Ehcache 2.5.1
10.0
 Application level caching
 Enhanced query cache
 Six New functions
 Cache region attribute in all
functions
Ehcache Implementation : Caching Evolution
 Fast restartability
 Terracotta Management
Console
Ehcache 2.6.6
11.0
 Bug fixes
 cacheRemove now takes an
array for ID
Ehcache 2.8.2
Current Version
Scale Up vs. Scale Out
ScaleUp
Scale Out
What about cost?
• Hardware
• Data center space
• Power
• Redundancy
• Software Licensing*
• Operations & Sysadmin
How does this change in the cloud?
More CPU
More RAM
More Machines
Caching Architectures
In-Process (L1 Cache)
 Operates in the same process
(JVM) as the application server
 Limited scalability for 32-bit
systems
 Must consider possible number of
cache variants
 Max JVM heap size
 Can fail-over to disk storage
 Fast
 Data/object serialization is not
required for memory based in-process
cache
JVM
ColdFusion
Cache
In-Process Cache
Caching Architectures
Out-of-Process (L2 Cache)
 Operates in its own process,
outside of the application
server’s JVM
 Highly scalable on both 32-bit
and 64-bit platforms
 Scale out
 Utilize spare memory throughout
the network
 Slower than in-process caching
 Data/objects must be
serialized/deserialized
JVM
ColdFusion
Cache
JVM
Cache
Out-of-Process Cache
10
Technology
Ehcache
 Java caching API
 In-process
 Open Source /
Commercial
 Built-in to
ColdFusion
BigMemory Go
 Off-heap memory
storage for the JVM
 Stand Alone
 Terracotta
Management
Console
 Commercial
Terracotta
 Distributed in-
memory caching
array
 Out-of-process
 Open Source no
longer supported
as of version 3.7.7
(Pairs with
Ehcache 2.6.8)
 Commercial: Part
of BigMemory
Max
BigMemory Max
 Off-heap memory
storage for the JVM
 Distributed
 Terracotta
Management
Console
 Commercial
Caching Architecture
Ehcache can be configured to run:
 Local: In-process (Ehcache [+
BigMemory Go])
 Replicated: In-process (Ehcache [+
BigMemory Go])
 Distributed: In-process and Out-of-
process (Ehcache + BigMemory Max)
ColdFusion
Server
Ehcache
ColdFusion
Server
Ehcache
JVM
JVM
ColdFusion
Server
Ehcache
ColdFusion
Server
Ehcache
JVM
JVM
RMI, JMS,
JGroups,
Terracotta
In-Process Cache
Replication
JVM
ColdFusion
Cache
In-Process Cache
JVM
ColdFusion
Cache
JVM
Cache
Out-of-Process Cache
To Help Avoid Confusion…
 Terracotta recently retired the Terracotta
Server and discontinued the free versions of
BigMemory Go and BigMemory Max
 To avoid confusion, keep this in mind:
 Ehcache = In-Process Java Caching API – Comes
built-in with ColdFusion
 BigMemory Go = Enterprise Ehcache + Off-Heap
Memory Storage for the JVM on a single server -
Commercial (90 day trial)
 BigMemory Max = Enterprise Ehcache + Off-Heap
Memory Storage for the JVM + Distributed In-
Memory Caching via the Terracotta Server Array –
Commercial (90 day trial)
Still Confused?
BigMemory Go BigMemory Max
Distributed in-memory data store No (standalone JVM) Yes
In-memory capacity Unlimited (limit based on license) Unlimited (limit based on license)
Number of BigMemory mirrored stripes supported N/A Unlimited (limit based on license)
Number of application clients supported N/A Unlimited (limit based on license)
Fast search Yes Yes
Configurable data consistency guarantees N/A Yes
Terracotta Management Console™ Yes Yes
Fast Restartable Store™ Yes Yes
BigMemory-Hadoop Connector support Yes
In-process off-heap storage Yes Yes
Advanced security (authentication/authorization) N/A Yes
Enterprise support Yes Yes
Cache Replication
Scalability: Cache Replication (Clustering)
 All supported cache types can be
replicated
 Each CF server in the cluster
maintains its own in-process cache
 Data is replicated among L1 caches
 Replication via RMI, JMS, JGroups
or Terracotta
 Synchronous or asynchronous
 Still hit JVM GC issues/limits
 Simple configuration via
ehcache.xml file
ColdFusion
Server
Ehcache
ColdFusion
Server
Ehcache
JVM
JVM
ColdFusion
Server
Ehcache
ColdFusion
Server
Ehcache
JVM
JVM
RMI, JMS,
JGroups,
Terracotta
In-Process Cache
Replication
20
Potential Replication Gotchas
 Synchronous vs. Asynchronous delivery
 Asynchronous replication is the fastest method
 Because it’s asynchronous the caller returns immediately
 Messages are placed in a queue and batched via RMI as they are processed
 Potential for data inconsistency exists
 Synchronous
 Removes potential for data inconsistency
 Slower operation as caller waits for replication to complete before returning
 Time To Idle
 Inconsistent with replicated caching
 Data on some nodes will live longer than on others due to cache usage patterns
 Do not use unless you don’t care about inconsistent data across cache nodes
Replicated Cache Config Per Node – Step 1
 Stop your ColdFusion Server
 /lib/{servername}/ehcache.xml
 Uncomment:
<cacheManagerPeerProviderFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"
properties="peerDiscovery=automatic,
multicastGroupAddress=230.0.0.1,
multicastGroupPort=4446, timeToLive=1"
propertySeparator=","
/>
Replicated Cache Config Per Node – Step 2
<cacheManagerPeerListenerFactory
class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"
properties="hostName=www1.foo.com, socketTimeoutMillis=120000"
propertySeparator=","
/>
<cache
name="myReplicatedCache"
maxElementsInMemory="5000"
eternal="false">
<cacheEventListenerFactory
class="net.sf.ehcache.distribution.RMICacheReplicatorFactory“
/>
</cache>
Replicated Cache
It’s Really That Easy!
*Don’t forget to restart ColdFusion
BigMemory Go
Problems with Application Scalability on the JVM
 Slow Applications lead to caching
 Large caches lead to latency from Garbage
Collection pauses
 GC pauses necessitate JVM tuning
 Application usage and data grows
 More caching is needed
 More JVM tuning is needed
 As cache size increases, more heap memory is used
 More heap memory usage results in unpredictable
and longer GC pauses
 Eventually you hit a wall
 Add more JVMs
 Increased deployment and management
complexity
 Tune! Tune! Tune!
The Problem with Memory and the JVM
 RAM is outpacing the JVM
 32GB is now fairly standard on most servers
 Amazon EC2 allows for up to 68.4GB
 Most of that memory is used inefficiently if it’s used at all
 Cached data ages differently than standard business objects
which can confuse the Java garbage collector
 The cache expiration determines when the data becomes garbage
 And then there's tuning…
GC Tuning – Need I Say More?
BigMemory to the Rescue
 Cache huge amounts of data with no GC pauses
 Easy to implement
 Pure Java implementation
 Works with all JVMs
 Works with both standalone and distributed caches
 No application code changes necessary to implement
 Avoid GC because of pauses
 Off heap store on direct memory buffers
 Use all available memory on your server (if you want to)
 1 million puts per second
 1 line of config to use it
 JVM doesn’t have to search for garbage because we already know when a cache item
needs to be thrown out (cache expiry)
Tiered Memory Store and BigMemory Architecture
Upgrade Ehcache and Install BigMemory Go
 BigMemory Go requires a newer
version of Ehcache
 Adobe doesn’t officially support
upgrading. Do so at your own risk!
 There’s currently a bug you need to
be aware of in CF 10 (as of updater
11):
 3339491: After upgrading Ehcache,
ehcache.xml is ignored. You’ll need to use
auth-ehcache.xml for now. (Marked as Fixed,
but not yet deployed in a hotfix)
60
Upgrade Ehcache and Install Big Memory: Step 1
 Stop your ColdFusion server
 Rename the following files in your servername/lib directory:
 ehcache-core-2.5.1.jar  ehcache-core-2.5.1.jar.original
 slf4j-api-1.5.6.jar slf4j-api-1.5.6.jar.original
 slf4j-log4j12-1.5.6.jar  slf4j-log4j12-1.5.6.jar.old
Upgrade Ehcache and Install Big Memory: Step 2
 Download BigMemory Trial (It will give you Max even if you select Go):
 http://terracotta.org/products/bigmemorygo
 Extract the following files into your servername/lib directory:
From /apis/ehcache/lib
ehcache-ee-<version>.jar
slf4j-api-<version>.jar
From /common/lib
bigmemory-<version>.jar
 Copy the terracotta-license.key file you received by email after downloading
BigMemory into your servername/lib directory
Upgrade Ehcache and Install Big Memory: Step 3
 Download the Slf4j version bundle that matches the version in your
BigMemory download from http://www.slf4j.org/dist/
 Extract the slf4j-log4j12-<version>.jar into your servername/lib directory
Upgrade Ehcache and Install Big Memory: Step 4
ehcache.xml (auth-cache.xml):
<cache name="sample-offheap-cache"
maxElementsInMemory="100000"
eternal="true"
memoryStoreEvictionPolicy="LRU"
overflowToOffHeap="true"
maxMemoryOffHeap="2G"/>
Start your ColdFusion server
JVM Config in ColdFusion Admin:
-XX:MaxDirectMemorySize=3G
Restart your ColdFusion server
ColdFusion Memory Footprint w/ BigMemory Go
Distributed Caching with BigMemory Max
Scalability: Distributed Tiered Caching with BigMemory Max
BigMemory Max
Scalability: Distributed Caching (Commercial)
 Commercial license
 Runs out-of-process
 Tiered caching
 Hottest data in L1 (< 1 μs access)
 Everything in L2 (< 2 ms access)
 "Snap-in scale"
 Works with single node Ehcache or
replicated Ehcache
 Simple config via ehcache.xml
 High data capacity: 2TB+
 Highly available
Enterprise
Ehcache
Terracotta
Server
Array
Terracotta
Server Array
ColdFusion
Enterprise
Ehcache
ColdFusion
…
Terracotta
Server
Array
Terracotta
Server Array
• Stop your ColdFusion server
• Rename the following files in your
servername/lib directory:
ehcache-core-2.5.1.jar  ehcache-core-
2.5.1.jar.original
slf4j-api-1.5.6.jar slf4j-api-1.5.6.jar.old
slf4j-log4j12-1.5.6.jar  slf4j-log4j12-1.5.6.jar.old
• Add the following jar files:
From apis/ehcache/lib
ehcache-ee-<version>.jar
slf4j-api-<version>.jar
From apis/toolkit/lib
terracotta-toolkit-runtime-ee-<version>.jar
Ehcache
Terracotta
Server
ColdFusion
Ehcache
ColdFusion
…
Distributed Cache Configuration: Step 1/3
Edit your ehcache.xml
<ehcache>
<terracottaConfig url="someserver:9510"/>
<defaultCache
maxElementsInMemory="10000"
timeToLiveSeconds="120“
overflowToOffHeap="true"
maxMemoryOffHeap="2G">
<terracotta clustered="true">
</defaultCache>
</ehcache>
Ehcache
Terracotta
Server
ColdFusion
Ehcache
ColdFusion
…
Distributed Cache Configuration: Step 2/3
Start ColdFusion
JVM Config in ColdFusion Admin:
-X:MaxDirectMemorySize=3G
Stop ColdFusion
Start the Terracotta server, then restart
ColdFusion
bin/start-tc-server.sh
bin/start-tc-server.bat
Ehcache
Terracotta
Server
ColdFusion
Ehcache
ColdFusion
…
Distributed Cache Configuration: Step 3/3
Terracotta Gotchas
 The Terracotta server must be running before you bring up your ColdFusion
server, otherwise your page request (that tries to do a cache operation) will
spin until the connection times out and an error is returned
 Terracotta can only be used with ColdFusion Enterprise. There’s a bug if you
try to use it with the Developer Edition where ColdFusion will return an error
telling you it’s an Enterprise Only feature.
Cache Monitoring
Installing the Terracotta Management Console
1. Ensure JAVA_HOME is set
2. Extract the BigMemory go files
3. Start the monitor server: /management-console/lib/start-tmc.bat
4. Configure ehcache (auth_cache.xml) and add monitoring line:
<managementRESTService enabled="true" bind="0.0.0.0:9888" />
5. Open the web browser to http://localhost:9889/tmc
Terracotta Management Console
Q&A
Rob Brooks-Bilson
Senior Director
1900 South Price Road
Chandler, AZ 85286
Tel (480) 786-7748
Fax (480) 821-9777
rbils@amkor.com
Twitter: @styggiti

More Related Content

What's hot

Endotracheal tube
Endotracheal tubeEndotracheal tube
Endotracheal tube
Abhinav Shreeram
 
25. basics of mechanical ventilation in neonates
25. basics of mechanical ventilation in neonates25. basics of mechanical ventilation in neonates
25. basics of mechanical ventilation in neonatesAyman Rezk
 
Anesthesia concerns in the elderly
Anesthesia concerns in the elderlyAnesthesia concerns in the elderly
Anesthesia concerns in the elderly
Marc Evans Abat
 
Oxygen delivery devices
Oxygen delivery devicesOxygen delivery devices
ilovepdf_merged.pdf
ilovepdf_merged.pdfilovepdf_merged.pdf
ilovepdf_merged.pdf
safuraqazi
 
MELLSS Airway adjunct and difficult airway
MELLSS Airway adjunct and difficult airway MELLSS Airway adjunct and difficult airway
MELLSS Airway adjunct and difficult airway
nur amalina aminuddin baki
 
Nippv
NippvNippv
Managementof cerebral edema
Managementof cerebral edemaManagementof cerebral edema
Managementof cerebral edemaTejasvi Charan
 
Gilchrist IC - AIMRADIAL 2014 - Allen's test
Gilchrist IC - AIMRADIAL 2014 - Allen's testGilchrist IC - AIMRADIAL 2014 - Allen's test
Anemia in critical illness
Anemia in critical illnessAnemia in critical illness
Anemia in critical illnesssesegreti1
 
Running Flink in Production: The good, The bad and The in Between - Lakshmi ...
Running Flink in Production:  The good, The bad and The in Between - Lakshmi ...Running Flink in Production:  The good, The bad and The in Between - Lakshmi ...
Running Flink in Production: The good, The bad and The in Between - Lakshmi ...
Flink Forward
 
Basics of Oxygen Therapy
Basics of Oxygen TherapyBasics of Oxygen Therapy
Basics of Oxygen Therapy
Claire Constantino
 
Tracheostomy
TracheostomyTracheostomy
How to write medical dissertation
How to write medical dissertationHow to write medical dissertation
How to write medical dissertation
Selva Kumar
 
Oxygen therapy
Oxygen therapyOxygen therapy
Oxygen therapy
KalpanaKawan1
 
Percutaneous tracheostomy
Percutaneous tracheostomyPercutaneous tracheostomy
Percutaneous tracheostomyAnor Abidin
 
Head injuries
Head injuriesHead injuries
Head injuries
Ivan Kato
 

What's hot (18)

oxygen therapy
oxygen therapy  oxygen therapy
oxygen therapy
 
Endotracheal tube
Endotracheal tubeEndotracheal tube
Endotracheal tube
 
25. basics of mechanical ventilation in neonates
25. basics of mechanical ventilation in neonates25. basics of mechanical ventilation in neonates
25. basics of mechanical ventilation in neonates
 
Anesthesia concerns in the elderly
Anesthesia concerns in the elderlyAnesthesia concerns in the elderly
Anesthesia concerns in the elderly
 
Oxygen delivery devices
Oxygen delivery devicesOxygen delivery devices
Oxygen delivery devices
 
ilovepdf_merged.pdf
ilovepdf_merged.pdfilovepdf_merged.pdf
ilovepdf_merged.pdf
 
MELLSS Airway adjunct and difficult airway
MELLSS Airway adjunct and difficult airway MELLSS Airway adjunct and difficult airway
MELLSS Airway adjunct and difficult airway
 
Nippv
NippvNippv
Nippv
 
Managementof cerebral edema
Managementof cerebral edemaManagementof cerebral edema
Managementof cerebral edema
 
Gilchrist IC - AIMRADIAL 2014 - Allen's test
Gilchrist IC - AIMRADIAL 2014 - Allen's testGilchrist IC - AIMRADIAL 2014 - Allen's test
Gilchrist IC - AIMRADIAL 2014 - Allen's test
 
Anemia in critical illness
Anemia in critical illnessAnemia in critical illness
Anemia in critical illness
 
Running Flink in Production: The good, The bad and The in Between - Lakshmi ...
Running Flink in Production:  The good, The bad and The in Between - Lakshmi ...Running Flink in Production:  The good, The bad and The in Between - Lakshmi ...
Running Flink in Production: The good, The bad and The in Between - Lakshmi ...
 
Basics of Oxygen Therapy
Basics of Oxygen TherapyBasics of Oxygen Therapy
Basics of Oxygen Therapy
 
Tracheostomy
TracheostomyTracheostomy
Tracheostomy
 
How to write medical dissertation
How to write medical dissertationHow to write medical dissertation
How to write medical dissertation
 
Oxygen therapy
Oxygen therapyOxygen therapy
Oxygen therapy
 
Percutaneous tracheostomy
Percutaneous tracheostomyPercutaneous tracheostomy
Percutaneous tracheostomy
 
Head injuries
Head injuriesHead injuries
Head injuries
 

Viewers also liked

Scale ColdFusion with Terracotta Distributed Caching for Ehchache
Scale ColdFusion with Terracotta Distributed Caching for EhchacheScale ColdFusion with Terracotta Distributed Caching for Ehchache
Scale ColdFusion with Terracotta Distributed Caching for Ehchache
ColdFusionConference
 
Clustering Java applications with Terracotta and Hazelcast
Clustering Java applications with Terracotta and HazelcastClustering Java applications with Terracotta and Hazelcast
Clustering Java applications with Terracotta and Hazelcast
b0ris_1
 
ColdFusion Features for More Modern Coding
ColdFusion Features for More Modern CodingColdFusion Features for More Modern Coding
ColdFusion Features for More Modern Coding
ColdFusionConference
 
Cold fusion Security-How to Secure Coldfusion Server
Cold fusion Security-How to Secure Coldfusion ServerCold fusion Security-How to Secure Coldfusion Server
Cold fusion Security-How to Secure Coldfusion Server
Mindfire Solutions
 
Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...
Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...
Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...
ColdFusionConference
 
Caching Strategies
Caching StrategiesCaching Strategies
Caching Strategies
Michal Špaček
 
Exploring Terracotta
Exploring TerracottaExploring Terracotta
Exploring Terracotta
Alex Miller
 
Terracotta Java Scalability - Stateless Versus Stateful Apps
Terracotta Java Scalability - Stateless Versus Stateful AppsTerracotta Java Scalability - Stateless Versus Stateful Apps
Terracotta Java Scalability - Stateless Versus Stateful Apps
Matthew McCullough
 
Using NoSQL MongoDB with ColdFusion
Using NoSQL MongoDB with ColdFusionUsing NoSQL MongoDB with ColdFusion
Using NoSQL MongoDB with ColdFusion
indiver
 
5 Reasons to Upgrade Ehcache to BigMemory Go
5 Reasons to Upgrade Ehcache to BigMemory Go5 Reasons to Upgrade Ehcache to BigMemory Go
5 Reasons to Upgrade Ehcache to BigMemory Go
Terracotta, a product line at Software AG
 
Caching reboot: javax.cache & Ehcache 3
Caching reboot: javax.cache & Ehcache 3Caching reboot: javax.cache & Ehcache 3
Caching reboot: javax.cache & Ehcache 3
Louis Jacomet
 
Building High Scalability Apps With Terracotta
Building High Scalability Apps With TerracottaBuilding High Scalability Apps With Terracotta
Building High Scalability Apps With Terracotta
David Reines
 
Terracotta Hadoop & In-Memory Webcast
Terracotta Hadoop & In-Memory WebcastTerracotta Hadoop & In-Memory Webcast
Terracotta Hadoop & In-Memory Webcast
Terracotta, a product line at Software AG
 
Scaling Your Cache And Caching At Scale
Scaling Your Cache And Caching At ScaleScaling Your Cache And Caching At Scale
Scaling Your Cache And Caching At Scale
Alex Miller
 
10 Reasons ColdFusion PDFs should rule the world
10 Reasons ColdFusion PDFs should rule the world10 Reasons ColdFusion PDFs should rule the world
10 Reasons ColdFusion PDFs should rule the world
ColdFusionConference
 
Building ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS ApplicationsBuilding ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS Applications
ColdFusionConference
 
Introduction to Terracotta
Introduction to TerracottaIntroduction to Terracotta
Introduction to Terracotta
Cris Holdorph
 
IOT, Streaming Analytics and Machine Learning
IOT, Streaming Analytics and Machine Learning IOT, Streaming Analytics and Machine Learning
IOT, Streaming Analytics and Machine Learning
DataWorks Summit/Hadoop Summit
 
Become a Security Rockstar with ColdFusion 2016
Become a Security Rockstar with ColdFusion 2016Become a Security Rockstar with ColdFusion 2016
Become a Security Rockstar with ColdFusion 2016
ColdFusionConference
 

Viewers also liked (20)

Scale ColdFusion with Terracotta Distributed Caching for Ehchache
Scale ColdFusion with Terracotta Distributed Caching for EhchacheScale ColdFusion with Terracotta Distributed Caching for Ehchache
Scale ColdFusion with Terracotta Distributed Caching for Ehchache
 
Clustering Java applications with Terracotta and Hazelcast
Clustering Java applications with Terracotta and HazelcastClustering Java applications with Terracotta and Hazelcast
Clustering Java applications with Terracotta and Hazelcast
 
ColdFusion Features for More Modern Coding
ColdFusion Features for More Modern CodingColdFusion Features for More Modern Coding
ColdFusion Features for More Modern Coding
 
Cold fusion Security-How to Secure Coldfusion Server
Cold fusion Security-How to Secure Coldfusion ServerCold fusion Security-How to Secure Coldfusion Server
Cold fusion Security-How to Secure Coldfusion Server
 
Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...
Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...
Improve ColdFusion Performance by tuning the Connector and using ColdFusion-T...
 
Caching Strategies
Caching StrategiesCaching Strategies
Caching Strategies
 
Exploring Terracotta
Exploring TerracottaExploring Terracotta
Exploring Terracotta
 
Terracotta Java Scalability - Stateless Versus Stateful Apps
Terracotta Java Scalability - Stateless Versus Stateful AppsTerracotta Java Scalability - Stateless Versus Stateful Apps
Terracotta Java Scalability - Stateless Versus Stateful Apps
 
Aop clustering
Aop clusteringAop clustering
Aop clustering
 
Using NoSQL MongoDB with ColdFusion
Using NoSQL MongoDB with ColdFusionUsing NoSQL MongoDB with ColdFusion
Using NoSQL MongoDB with ColdFusion
 
5 Reasons to Upgrade Ehcache to BigMemory Go
5 Reasons to Upgrade Ehcache to BigMemory Go5 Reasons to Upgrade Ehcache to BigMemory Go
5 Reasons to Upgrade Ehcache to BigMemory Go
 
Caching reboot: javax.cache & Ehcache 3
Caching reboot: javax.cache & Ehcache 3Caching reboot: javax.cache & Ehcache 3
Caching reboot: javax.cache & Ehcache 3
 
Building High Scalability Apps With Terracotta
Building High Scalability Apps With TerracottaBuilding High Scalability Apps With Terracotta
Building High Scalability Apps With Terracotta
 
Terracotta Hadoop & In-Memory Webcast
Terracotta Hadoop & In-Memory WebcastTerracotta Hadoop & In-Memory Webcast
Terracotta Hadoop & In-Memory Webcast
 
Scaling Your Cache And Caching At Scale
Scaling Your Cache And Caching At ScaleScaling Your Cache And Caching At Scale
Scaling Your Cache And Caching At Scale
 
10 Reasons ColdFusion PDFs should rule the world
10 Reasons ColdFusion PDFs should rule the world10 Reasons ColdFusion PDFs should rule the world
10 Reasons ColdFusion PDFs should rule the world
 
Building ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS ApplicationsBuilding ColdFusion And AngularJS Applications
Building ColdFusion And AngularJS Applications
 
Introduction to Terracotta
Introduction to TerracottaIntroduction to Terracotta
Introduction to Terracotta
 
IOT, Streaming Analytics and Machine Learning
IOT, Streaming Analytics and Machine Learning IOT, Streaming Analytics and Machine Learning
IOT, Streaming Analytics and Machine Learning
 
Become a Security Rockstar with ColdFusion 2016
Become a Security Rockstar with ColdFusion 2016Become a Security Rockstar with ColdFusion 2016
Become a Security Rockstar with ColdFusion 2016
 

Similar to Advanced caching techniques with ehcache, big memory, terracotta, and coldfusion

Developing High Performance and Scalable ColdFusion Application Using Terraco...
Developing High Performance and Scalable ColdFusion Application Using Terraco...Developing High Performance and Scalable ColdFusion Application Using Terraco...
Developing High Performance and Scalable ColdFusion Application Using Terraco...
ColdFusionConference
 
Developing High Performance and Scalable ColdFusion Applications Using Terrac...
Developing High Performance and Scalable ColdFusion Applications Using Terrac...Developing High Performance and Scalable ColdFusion Applications Using Terrac...
Developing High Performance and Scalable ColdFusion Applications Using Terrac...
Shailendra Prasad
 
Mini-Training: To cache or not to cache
Mini-Training: To cache or not to cacheMini-Training: To cache or not to cache
Mini-Training: To cache or not to cache
Betclic Everest Group Tech Team
 
Jug Lugano - Scale over the limits
Jug Lugano - Scale over the limitsJug Lugano - Scale over the limits
Jug Lugano - Scale over the limitsDavide Carnevali
 
Scaling PHP apps
Scaling PHP appsScaling PHP apps
Scaling PHP apps
Matteo Moretti
 
VMworld 2013: Extreme Performance Series: Storage in a Flash
VMworld 2013: Extreme Performance Series: Storage in a Flash VMworld 2013: Extreme Performance Series: Storage in a Flash
VMworld 2013: Extreme Performance Series: Storage in a Flash
VMworld
 
Heapoff memory wtf
Heapoff memory wtfHeapoff memory wtf
Heapoff memory wtf
Olivier Lamy
 
cache concepts and varnish-cache
cache concepts and varnish-cachecache concepts and varnish-cache
cache concepts and varnish-cache
Marc Cortinas Val
 
Joomla! Performance on Steroids
Joomla! Performance on SteroidsJoomla! Performance on Steroids
Joomla! Performance on Steroids
SiteGround.com
 
Introduction to memcached
Introduction to memcachedIntroduction to memcached
Introduction to memcached
Jurriaan Persyn
 
Four Ways to Improve ASP .NET Performance and Scalability
 Four Ways to Improve ASP .NET Performance and Scalability Four Ways to Improve ASP .NET Performance and Scalability
Four Ways to Improve ASP .NET Performance and Scalability
Alachisoft
 
Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...
Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...
Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...
varien
 
Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...
Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...
Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...MagentoImagine
 
Caching with Memcached and APC
Caching with Memcached and APCCaching with Memcached and APC
Caching with Memcached and APC
Ben Ramsey
 
Lonestar php scalingmagento
Lonestar php scalingmagentoLonestar php scalingmagento
Lonestar php scalingmagento
Mathew Beane
 
Xap memory xtend-tutorial-2014
Xap memory xtend-tutorial-2014Xap memory xtend-tutorial-2014
Xap memory xtend-tutorial-2014
Shay Hassidim
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
Wim Godden
 
ASP.NET 4.0 Cache Extensibility
ASP.NET 4.0 Cache ExtensibilityASP.NET 4.0 Cache Extensibility
ASP.NET 4.0 Cache Extensibility
akrakovetsky
 
Caching and tuning fun for high scalability @ FrOSCon 2011
Caching and tuning fun for high scalability @ FrOSCon 2011Caching and tuning fun for high scalability @ FrOSCon 2011
Caching and tuning fun for high scalability @ FrOSCon 2011
Wim Godden
 
Caching your rails application
Caching your rails applicationCaching your rails application
Caching your rails application
ArrrrCamp
 

Similar to Advanced caching techniques with ehcache, big memory, terracotta, and coldfusion (20)

Developing High Performance and Scalable ColdFusion Application Using Terraco...
Developing High Performance and Scalable ColdFusion Application Using Terraco...Developing High Performance and Scalable ColdFusion Application Using Terraco...
Developing High Performance and Scalable ColdFusion Application Using Terraco...
 
Developing High Performance and Scalable ColdFusion Applications Using Terrac...
Developing High Performance and Scalable ColdFusion Applications Using Terrac...Developing High Performance and Scalable ColdFusion Applications Using Terrac...
Developing High Performance and Scalable ColdFusion Applications Using Terrac...
 
Mini-Training: To cache or not to cache
Mini-Training: To cache or not to cacheMini-Training: To cache or not to cache
Mini-Training: To cache or not to cache
 
Jug Lugano - Scale over the limits
Jug Lugano - Scale over the limitsJug Lugano - Scale over the limits
Jug Lugano - Scale over the limits
 
Scaling PHP apps
Scaling PHP appsScaling PHP apps
Scaling PHP apps
 
VMworld 2013: Extreme Performance Series: Storage in a Flash
VMworld 2013: Extreme Performance Series: Storage in a Flash VMworld 2013: Extreme Performance Series: Storage in a Flash
VMworld 2013: Extreme Performance Series: Storage in a Flash
 
Heapoff memory wtf
Heapoff memory wtfHeapoff memory wtf
Heapoff memory wtf
 
cache concepts and varnish-cache
cache concepts and varnish-cachecache concepts and varnish-cache
cache concepts and varnish-cache
 
Joomla! Performance on Steroids
Joomla! Performance on SteroidsJoomla! Performance on Steroids
Joomla! Performance on Steroids
 
Introduction to memcached
Introduction to memcachedIntroduction to memcached
Introduction to memcached
 
Four Ways to Improve ASP .NET Performance and Scalability
 Four Ways to Improve ASP .NET Performance and Scalability Four Ways to Improve ASP .NET Performance and Scalability
Four Ways to Improve ASP .NET Performance and Scalability
 
Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...
Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...
Magento Imagine eCommerce Conference February 2011: Optimizing Magento For Pe...
 
Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...
Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...
Magento's Imagine eCommerce Conference 2011 - Hosting Magento: Performance an...
 
Caching with Memcached and APC
Caching with Memcached and APCCaching with Memcached and APC
Caching with Memcached and APC
 
Lonestar php scalingmagento
Lonestar php scalingmagentoLonestar php scalingmagento
Lonestar php scalingmagento
 
Xap memory xtend-tutorial-2014
Xap memory xtend-tutorial-2014Xap memory xtend-tutorial-2014
Xap memory xtend-tutorial-2014
 
Caching and tuning fun for high scalability
Caching and tuning fun for high scalabilityCaching and tuning fun for high scalability
Caching and tuning fun for high scalability
 
ASP.NET 4.0 Cache Extensibility
ASP.NET 4.0 Cache ExtensibilityASP.NET 4.0 Cache Extensibility
ASP.NET 4.0 Cache Extensibility
 
Caching and tuning fun for high scalability @ FrOSCon 2011
Caching and tuning fun for high scalability @ FrOSCon 2011Caching and tuning fun for high scalability @ FrOSCon 2011
Caching and tuning fun for high scalability @ FrOSCon 2011
 
Caching your rails application
Caching your rails applicationCaching your rails application
Caching your rails application
 

More from ColdFusionConference

Api manager preconference
Api manager preconferenceApi manager preconference
Api manager preconference
ColdFusionConference
 
Cf ppt vsr
Cf ppt vsrCf ppt vsr
Building better SQL Server Databases
Building better SQL Server DatabasesBuilding better SQL Server Databases
Building better SQL Server Databases
ColdFusionConference
 
API Economy, Realizing the Business Value of APIs
API Economy, Realizing the Business Value of APIsAPI Economy, Realizing the Business Value of APIs
API Economy, Realizing the Business Value of APIs
ColdFusionConference
 
Don't just pdf, Smart PDF
Don't just pdf, Smart PDFDon't just pdf, Smart PDF
Don't just pdf, Smart PDF
ColdFusionConference
 
Crafting ColdFusion Applications like an Architect
Crafting ColdFusion Applications like an ArchitectCrafting ColdFusion Applications like an Architect
Crafting ColdFusion Applications like an Architect
ColdFusionConference
 
Security And Access Control For APIS using CF API Manager
Security And Access Control For APIS using CF API ManagerSecurity And Access Control For APIS using CF API Manager
Security And Access Control For APIS using CF API Manager
ColdFusionConference
 
Monetizing Business Models: ColdFusion and APIS
Monetizing Business Models: ColdFusion and APISMonetizing Business Models: ColdFusion and APIS
Monetizing Business Models: ColdFusion and APIS
ColdFusionConference
 
ColdFusion in Transit action
ColdFusion in Transit actionColdFusion in Transit action
ColdFusion in Transit action
ColdFusionConference
 
Developer Insights for Application Upgrade to ColdFusion 2016
Developer Insights for Application Upgrade to ColdFusion 2016Developer Insights for Application Upgrade to ColdFusion 2016
Developer Insights for Application Upgrade to ColdFusion 2016
ColdFusionConference
 
Where is cold fusion headed
Where is cold fusion headedWhere is cold fusion headed
Where is cold fusion headed
ColdFusionConference
 
ColdFusion Keynote: Building the Agile Web Since 1995
ColdFusion Keynote: Building the Agile Web Since 1995ColdFusion Keynote: Building the Agile Web Since 1995
ColdFusion Keynote: Building the Agile Web Since 1995
ColdFusionConference
 
Instant ColdFusion with Vagrant
Instant ColdFusion with VagrantInstant ColdFusion with Vagrant
Instant ColdFusion with Vagrant
ColdFusionConference
 
Restful services with ColdFusion
Restful services with ColdFusionRestful services with ColdFusion
Restful services with ColdFusion
ColdFusionConference
 
Super Fast Application development with Mura CMS
Super Fast Application development with Mura CMSSuper Fast Application development with Mura CMS
Super Fast Application development with Mura CMS
ColdFusionConference
 
Build your own secure and real-time dashboard for mobile and web
Build your own secure and real-time dashboard for mobile and webBuild your own secure and real-time dashboard for mobile and web
Build your own secure and real-time dashboard for mobile and web
ColdFusionConference
 
Why Everyone else writes bad code
Why Everyone else writes bad codeWhy Everyone else writes bad code
Why Everyone else writes bad code
ColdFusionConference
 
Securing applications
Securing applicationsSecuring applications
Securing applications
ColdFusionConference
 
Testing automaton
Testing automatonTesting automaton
Testing automaton
ColdFusionConference
 
Rest ful tools for lazy experts
Rest ful tools for lazy expertsRest ful tools for lazy experts
Rest ful tools for lazy experts
ColdFusionConference
 

More from ColdFusionConference (20)

Api manager preconference
Api manager preconferenceApi manager preconference
Api manager preconference
 
Cf ppt vsr
Cf ppt vsrCf ppt vsr
Cf ppt vsr
 
Building better SQL Server Databases
Building better SQL Server DatabasesBuilding better SQL Server Databases
Building better SQL Server Databases
 
API Economy, Realizing the Business Value of APIs
API Economy, Realizing the Business Value of APIsAPI Economy, Realizing the Business Value of APIs
API Economy, Realizing the Business Value of APIs
 
Don't just pdf, Smart PDF
Don't just pdf, Smart PDFDon't just pdf, Smart PDF
Don't just pdf, Smart PDF
 
Crafting ColdFusion Applications like an Architect
Crafting ColdFusion Applications like an ArchitectCrafting ColdFusion Applications like an Architect
Crafting ColdFusion Applications like an Architect
 
Security And Access Control For APIS using CF API Manager
Security And Access Control For APIS using CF API ManagerSecurity And Access Control For APIS using CF API Manager
Security And Access Control For APIS using CF API Manager
 
Monetizing Business Models: ColdFusion and APIS
Monetizing Business Models: ColdFusion and APISMonetizing Business Models: ColdFusion and APIS
Monetizing Business Models: ColdFusion and APIS
 
ColdFusion in Transit action
ColdFusion in Transit actionColdFusion in Transit action
ColdFusion in Transit action
 
Developer Insights for Application Upgrade to ColdFusion 2016
Developer Insights for Application Upgrade to ColdFusion 2016Developer Insights for Application Upgrade to ColdFusion 2016
Developer Insights for Application Upgrade to ColdFusion 2016
 
Where is cold fusion headed
Where is cold fusion headedWhere is cold fusion headed
Where is cold fusion headed
 
ColdFusion Keynote: Building the Agile Web Since 1995
ColdFusion Keynote: Building the Agile Web Since 1995ColdFusion Keynote: Building the Agile Web Since 1995
ColdFusion Keynote: Building the Agile Web Since 1995
 
Instant ColdFusion with Vagrant
Instant ColdFusion with VagrantInstant ColdFusion with Vagrant
Instant ColdFusion with Vagrant
 
Restful services with ColdFusion
Restful services with ColdFusionRestful services with ColdFusion
Restful services with ColdFusion
 
Super Fast Application development with Mura CMS
Super Fast Application development with Mura CMSSuper Fast Application development with Mura CMS
Super Fast Application development with Mura CMS
 
Build your own secure and real-time dashboard for mobile and web
Build your own secure and real-time dashboard for mobile and webBuild your own secure and real-time dashboard for mobile and web
Build your own secure and real-time dashboard for mobile and web
 
Why Everyone else writes bad code
Why Everyone else writes bad codeWhy Everyone else writes bad code
Why Everyone else writes bad code
 
Securing applications
Securing applicationsSecuring applications
Securing applications
 
Testing automaton
Testing automatonTesting automaton
Testing automaton
 
Rest ful tools for lazy experts
Rest ful tools for lazy expertsRest ful tools for lazy experts
Rest ful tools for lazy experts
 

Recently uploaded

Emmanuel Katto Uganda - A Philanthropist
Emmanuel Katto Uganda - A PhilanthropistEmmanuel Katto Uganda - A Philanthropist
Emmanuel Katto Uganda - A Philanthropist
Marina Costa
 
x ray baggage scanner manufacturers in India
x ray baggage scanner manufacturers in Indiax ray baggage scanner manufacturers in India
x ray baggage scanner manufacturers in India
Gujar Industries India Pvt. Ltd
 
Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...
Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...
Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...
gitapress3
 
Earthmovers: Top Earth Moving Equipments
Earthmovers: Top Earth Moving EquipmentsEarthmovers: Top Earth Moving Equipments
Earthmovers: Top Earth Moving Equipments
earthmoverinternatio
 
DOJO Training Center - Empowering Workforce Excellence
DOJO Training Center - Empowering Workforce ExcellenceDOJO Training Center - Empowering Workforce Excellence
DOJO Training Center - Empowering Workforce Excellence
Himanshu
 
Get your dream bridal look with top North Indian makeup artist - Pallavi Kadale
Get your dream bridal look with top North Indian makeup artist - Pallavi KadaleGet your dream bridal look with top North Indian makeup artist - Pallavi Kadale
Get your dream bridal look with top North Indian makeup artist - Pallavi Kadale
Pallavi Makeup Artist
 
The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...
The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...
The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...
Softradix Technologies
 
The Best Premium IPTV Service Frane.docx
The Best Premium IPTV Service Frane.docxThe Best Premium IPTV Service Frane.docx
The Best Premium IPTV Service Frane.docx
Industry Foods UK
 
Bridging the Language Gap The Power of Simultaneous Interpretation in Rwanda
Bridging the Language Gap The Power of Simultaneous Interpretation in RwandaBridging the Language Gap The Power of Simultaneous Interpretation in Rwanda
Bridging the Language Gap The Power of Simultaneous Interpretation in Rwanda
Kasuku Translation Ltd
 
Comprehensive Water Damage Restoration Services
Comprehensive Water Damage Restoration ServicesComprehensive Water Damage Restoration Services
Comprehensive Water Damage Restoration Services
kleenupdisaster
 
Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...
Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...
Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...
RNayak3
 
Reliable Logistics Solutions - Truxcargo
Reliable Logistics Solutions - TruxcargoReliable Logistics Solutions - Truxcargo
Reliable Logistics Solutions - Truxcargo
Truxcargo
 
Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...
Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...
Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...
Landscape Express
 
Solar Panel For Home Price List In india
Solar Panel For Home Price List In indiaSolar Panel For Home Price List In india
Solar Panel For Home Price List In india
janhaviconaxweb
 
Best steel industrial company LLC in UAE
Best steel industrial company LLC in UAEBest steel industrial company LLC in UAE
Best steel industrial company LLC in UAE
alafnanmetals
 
All Trophies at Trophy-World Malaysia | Custom Trophies & Plaques Supplier
All Trophies at Trophy-World Malaysia | Custom Trophies & Plaques SupplierAll Trophies at Trophy-World Malaysia | Custom Trophies & Plaques Supplier
All Trophies at Trophy-World Malaysia | Custom Trophies & Plaques Supplier
Trophy-World Malaysia Your #1 Rated Trophy Supplier
 
Maximizing Efficiency with Integrated Water Management Systems
Maximizing Efficiency with Integrated Water Management SystemsMaximizing Efficiency with Integrated Water Management Systems
Maximizing Efficiency with Integrated Water Management Systems
Irri Design Studio
 
Colors of Wall Paint and Their Mentally Properties.pptx
Colors of Wall Paint and Their Mentally Properties.pptxColors of Wall Paint and Their Mentally Properties.pptx
Colors of Wall Paint and Their Mentally Properties.pptx
Brendon Jonathan
 
Bulk SMS Service Provider In Mumbai | sms2orbit
Bulk SMS Service Provider In Mumbai | sms2orbitBulk SMS Service Provider In Mumbai | sms2orbit
Bulk SMS Service Provider In Mumbai | sms2orbit
Orbit Messaging Hub
 
BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...
BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...
BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...
gitapress3
 

Recently uploaded (20)

Emmanuel Katto Uganda - A Philanthropist
Emmanuel Katto Uganda - A PhilanthropistEmmanuel Katto Uganda - A Philanthropist
Emmanuel Katto Uganda - A Philanthropist
 
x ray baggage scanner manufacturers in India
x ray baggage scanner manufacturers in Indiax ray baggage scanner manufacturers in India
x ray baggage scanner manufacturers in India
 
Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...
Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...
Top Best Astrologer +91-9463629203 LoVe Problem SolUtion specialist In InDia ...
 
Earthmovers: Top Earth Moving Equipments
Earthmovers: Top Earth Moving EquipmentsEarthmovers: Top Earth Moving Equipments
Earthmovers: Top Earth Moving Equipments
 
DOJO Training Center - Empowering Workforce Excellence
DOJO Training Center - Empowering Workforce ExcellenceDOJO Training Center - Empowering Workforce Excellence
DOJO Training Center - Empowering Workforce Excellence
 
Get your dream bridal look with top North Indian makeup artist - Pallavi Kadale
Get your dream bridal look with top North Indian makeup artist - Pallavi KadaleGet your dream bridal look with top North Indian makeup artist - Pallavi Kadale
Get your dream bridal look with top North Indian makeup artist - Pallavi Kadale
 
The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...
The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...
The Jamstack Revolution: Building Dynamic Websites with Static Site Generator...
 
The Best Premium IPTV Service Frane.docx
The Best Premium IPTV Service Frane.docxThe Best Premium IPTV Service Frane.docx
The Best Premium IPTV Service Frane.docx
 
Bridging the Language Gap The Power of Simultaneous Interpretation in Rwanda
Bridging the Language Gap The Power of Simultaneous Interpretation in RwandaBridging the Language Gap The Power of Simultaneous Interpretation in Rwanda
Bridging the Language Gap The Power of Simultaneous Interpretation in Rwanda
 
Comprehensive Water Damage Restoration Services
Comprehensive Water Damage Restoration ServicesComprehensive Water Damage Restoration Services
Comprehensive Water Damage Restoration Services
 
Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...
Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...
Unlocking Insights: AI-powered Enhanced Due Diligence Strategies for Increase...
 
Reliable Logistics Solutions - Truxcargo
Reliable Logistics Solutions - TruxcargoReliable Logistics Solutions - Truxcargo
Reliable Logistics Solutions - Truxcargo
 
Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...
Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...
Nature’s Paradise Glamorous And Sustainable Designs For Your Outdoor Living S...
 
Solar Panel For Home Price List In india
Solar Panel For Home Price List In indiaSolar Panel For Home Price List In india
Solar Panel For Home Price List In india
 
Best steel industrial company LLC in UAE
Best steel industrial company LLC in UAEBest steel industrial company LLC in UAE
Best steel industrial company LLC in UAE
 
All Trophies at Trophy-World Malaysia | Custom Trophies & Plaques Supplier
All Trophies at Trophy-World Malaysia | Custom Trophies & Plaques SupplierAll Trophies at Trophy-World Malaysia | Custom Trophies & Plaques Supplier
All Trophies at Trophy-World Malaysia | Custom Trophies & Plaques Supplier
 
Maximizing Efficiency with Integrated Water Management Systems
Maximizing Efficiency with Integrated Water Management SystemsMaximizing Efficiency with Integrated Water Management Systems
Maximizing Efficiency with Integrated Water Management Systems
 
Colors of Wall Paint and Their Mentally Properties.pptx
Colors of Wall Paint and Their Mentally Properties.pptxColors of Wall Paint and Their Mentally Properties.pptx
Colors of Wall Paint and Their Mentally Properties.pptx
 
Bulk SMS Service Provider In Mumbai | sms2orbit
Bulk SMS Service Provider In Mumbai | sms2orbitBulk SMS Service Provider In Mumbai | sms2orbit
Bulk SMS Service Provider In Mumbai | sms2orbit
 
BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...
BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...
BesT panDit Ji LoVe problem solution 9463629203 UK uSA California New Zealand...
 

Advanced caching techniques with ehcache, big memory, terracotta, and coldfusion

  • 1. Rob Brooks-Bilson | @styggiti | rob.brooks-bilson.com cf.Objective() 2014
  • 2. About Me  Sr. Director at Amkor Technology  Involved with ColdFusion for 18 years  Author of the O’Reilly’s books: Programming ColdFusion Programming ColdFusion MX  Adobe Community Professional for ColdFusion  Food Geek  Bed Jumper  Photographer
  • 4. Agenda What We’ll Cover And What We Wont…  What is caching?  What’s Ehcache?  Caching tags and functions  Any questions from Dan Wilson  Disclaimer  Caching Evolution in ColdFusion  Scale Up vs. Scale Out  Caching Architecture Review  Replicated Cache  BigMemory Go  Distributed Cache  Terracotta Management Console
  • 5. Legal Mumbo Jumbo: The Disclaimer  Much of what you’re about to see makes use of third-party libraries and applications  Some of it requires you to upgrade versions of libraries that ship with ColdFusion  There are bugs  There are workarounds  There is no official support from Adobe for much of what you’re about to see
  • 6. Ehcache Implementation : Caching Evolution Core cache Ehcache 1.6 9.0  Page caching  Fragment caching  Caching objects and data  ORM caching  Improved Hibernate plug-in, management, XA transactions, write-behind, bulk load, …  Snap-in support for distributed caching, via easy upgrade to Enterprise Ehcache Ehcache 2.0 9.1  New and enhanced functions: cacheGetSession, cacheGetMetadata  Support for new configuration properties  User-defined caches  copyOnRead &copyOnWrite, Explicit locking API, Nonstop Cache, Cache Search  New consistency modes: Strong and Eventual  Automatic Resource Control Ehcache 2.5.1 10.0  Application level caching  Enhanced query cache  Six New functions  Cache region attribute in all functions
  • 7. Ehcache Implementation : Caching Evolution  Fast restartability  Terracotta Management Console Ehcache 2.6.6 11.0  Bug fixes  cacheRemove now takes an array for ID Ehcache 2.8.2 Current Version
  • 8. Scale Up vs. Scale Out ScaleUp Scale Out What about cost? • Hardware • Data center space • Power • Redundancy • Software Licensing* • Operations & Sysadmin How does this change in the cloud? More CPU More RAM More Machines
  • 9. Caching Architectures In-Process (L1 Cache)  Operates in the same process (JVM) as the application server  Limited scalability for 32-bit systems  Must consider possible number of cache variants  Max JVM heap size  Can fail-over to disk storage  Fast  Data/object serialization is not required for memory based in-process cache JVM ColdFusion Cache In-Process Cache
  • 10. Caching Architectures Out-of-Process (L2 Cache)  Operates in its own process, outside of the application server’s JVM  Highly scalable on both 32-bit and 64-bit platforms  Scale out  Utilize spare memory throughout the network  Slower than in-process caching  Data/objects must be serialized/deserialized JVM ColdFusion Cache JVM Cache Out-of-Process Cache 10
  • 11. Technology Ehcache  Java caching API  In-process  Open Source / Commercial  Built-in to ColdFusion BigMemory Go  Off-heap memory storage for the JVM  Stand Alone  Terracotta Management Console  Commercial Terracotta  Distributed in- memory caching array  Out-of-process  Open Source no longer supported as of version 3.7.7 (Pairs with Ehcache 2.6.8)  Commercial: Part of BigMemory Max BigMemory Max  Off-heap memory storage for the JVM  Distributed  Terracotta Management Console  Commercial
  • 12. Caching Architecture Ehcache can be configured to run:  Local: In-process (Ehcache [+ BigMemory Go])  Replicated: In-process (Ehcache [+ BigMemory Go])  Distributed: In-process and Out-of- process (Ehcache + BigMemory Max) ColdFusion Server Ehcache ColdFusion Server Ehcache JVM JVM ColdFusion Server Ehcache ColdFusion Server Ehcache JVM JVM RMI, JMS, JGroups, Terracotta In-Process Cache Replication JVM ColdFusion Cache In-Process Cache JVM ColdFusion Cache JVM Cache Out-of-Process Cache
  • 13. To Help Avoid Confusion…  Terracotta recently retired the Terracotta Server and discontinued the free versions of BigMemory Go and BigMemory Max  To avoid confusion, keep this in mind:  Ehcache = In-Process Java Caching API – Comes built-in with ColdFusion  BigMemory Go = Enterprise Ehcache + Off-Heap Memory Storage for the JVM on a single server - Commercial (90 day trial)  BigMemory Max = Enterprise Ehcache + Off-Heap Memory Storage for the JVM + Distributed In- Memory Caching via the Terracotta Server Array – Commercial (90 day trial)
  • 14. Still Confused? BigMemory Go BigMemory Max Distributed in-memory data store No (standalone JVM) Yes In-memory capacity Unlimited (limit based on license) Unlimited (limit based on license) Number of BigMemory mirrored stripes supported N/A Unlimited (limit based on license) Number of application clients supported N/A Unlimited (limit based on license) Fast search Yes Yes Configurable data consistency guarantees N/A Yes Terracotta Management Console™ Yes Yes Fast Restartable Store™ Yes Yes BigMemory-Hadoop Connector support Yes In-process off-heap storage Yes Yes Advanced security (authentication/authorization) N/A Yes Enterprise support Yes Yes
  • 16. Scalability: Cache Replication (Clustering)  All supported cache types can be replicated  Each CF server in the cluster maintains its own in-process cache  Data is replicated among L1 caches  Replication via RMI, JMS, JGroups or Terracotta  Synchronous or asynchronous  Still hit JVM GC issues/limits  Simple configuration via ehcache.xml file ColdFusion Server Ehcache ColdFusion Server Ehcache JVM JVM ColdFusion Server Ehcache ColdFusion Server Ehcache JVM JVM RMI, JMS, JGroups, Terracotta In-Process Cache Replication 20
  • 17. Potential Replication Gotchas  Synchronous vs. Asynchronous delivery  Asynchronous replication is the fastest method  Because it’s asynchronous the caller returns immediately  Messages are placed in a queue and batched via RMI as they are processed  Potential for data inconsistency exists  Synchronous  Removes potential for data inconsistency  Slower operation as caller waits for replication to complete before returning  Time To Idle  Inconsistent with replicated caching  Data on some nodes will live longer than on others due to cache usage patterns  Do not use unless you don’t care about inconsistent data across cache nodes
  • 18. Replicated Cache Config Per Node – Step 1  Stop your ColdFusion Server  /lib/{servername}/ehcache.xml  Uncomment: <cacheManagerPeerProviderFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory" properties="peerDiscovery=automatic, multicastGroupAddress=230.0.0.1, multicastGroupPort=4446, timeToLive=1" propertySeparator="," />
  • 19. Replicated Cache Config Per Node – Step 2 <cacheManagerPeerListenerFactory class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory" properties="hostName=www1.foo.com, socketTimeoutMillis=120000" propertySeparator="," /> <cache name="myReplicatedCache" maxElementsInMemory="5000" eternal="false"> <cacheEventListenerFactory class="net.sf.ehcache.distribution.RMICacheReplicatorFactory“ /> </cache>
  • 20. Replicated Cache It’s Really That Easy! *Don’t forget to restart ColdFusion
  • 22. Problems with Application Scalability on the JVM  Slow Applications lead to caching  Large caches lead to latency from Garbage Collection pauses  GC pauses necessitate JVM tuning  Application usage and data grows  More caching is needed  More JVM tuning is needed  As cache size increases, more heap memory is used  More heap memory usage results in unpredictable and longer GC pauses  Eventually you hit a wall  Add more JVMs  Increased deployment and management complexity  Tune! Tune! Tune!
  • 23. The Problem with Memory and the JVM  RAM is outpacing the JVM  32GB is now fairly standard on most servers  Amazon EC2 allows for up to 68.4GB  Most of that memory is used inefficiently if it’s used at all  Cached data ages differently than standard business objects which can confuse the Java garbage collector  The cache expiration determines when the data becomes garbage  And then there's tuning…
  • 24. GC Tuning – Need I Say More?
  • 25. BigMemory to the Rescue  Cache huge amounts of data with no GC pauses  Easy to implement  Pure Java implementation  Works with all JVMs  Works with both standalone and distributed caches  No application code changes necessary to implement  Avoid GC because of pauses  Off heap store on direct memory buffers  Use all available memory on your server (if you want to)  1 million puts per second  1 line of config to use it  JVM doesn’t have to search for garbage because we already know when a cache item needs to be thrown out (cache expiry)
  • 26. Tiered Memory Store and BigMemory Architecture
  • 27. Upgrade Ehcache and Install BigMemory Go  BigMemory Go requires a newer version of Ehcache  Adobe doesn’t officially support upgrading. Do so at your own risk!  There’s currently a bug you need to be aware of in CF 10 (as of updater 11):  3339491: After upgrading Ehcache, ehcache.xml is ignored. You’ll need to use auth-ehcache.xml for now. (Marked as Fixed, but not yet deployed in a hotfix) 60
  • 28. Upgrade Ehcache and Install Big Memory: Step 1  Stop your ColdFusion server  Rename the following files in your servername/lib directory:  ehcache-core-2.5.1.jar  ehcache-core-2.5.1.jar.original  slf4j-api-1.5.6.jar slf4j-api-1.5.6.jar.original  slf4j-log4j12-1.5.6.jar  slf4j-log4j12-1.5.6.jar.old
  • 29. Upgrade Ehcache and Install Big Memory: Step 2  Download BigMemory Trial (It will give you Max even if you select Go):  http://terracotta.org/products/bigmemorygo  Extract the following files into your servername/lib directory: From /apis/ehcache/lib ehcache-ee-<version>.jar slf4j-api-<version>.jar From /common/lib bigmemory-<version>.jar  Copy the terracotta-license.key file you received by email after downloading BigMemory into your servername/lib directory
  • 30. Upgrade Ehcache and Install Big Memory: Step 3  Download the Slf4j version bundle that matches the version in your BigMemory download from http://www.slf4j.org/dist/  Extract the slf4j-log4j12-<version>.jar into your servername/lib directory
  • 31. Upgrade Ehcache and Install Big Memory: Step 4 ehcache.xml (auth-cache.xml): <cache name="sample-offheap-cache" maxElementsInMemory="100000" eternal="true" memoryStoreEvictionPolicy="LRU" overflowToOffHeap="true" maxMemoryOffHeap="2G"/> Start your ColdFusion server JVM Config in ColdFusion Admin: -XX:MaxDirectMemorySize=3G Restart your ColdFusion server
  • 32. ColdFusion Memory Footprint w/ BigMemory Go
  • 33. Distributed Caching with BigMemory Max
  • 34. Scalability: Distributed Tiered Caching with BigMemory Max
  • 36. Scalability: Distributed Caching (Commercial)  Commercial license  Runs out-of-process  Tiered caching  Hottest data in L1 (< 1 μs access)  Everything in L2 (< 2 ms access)  "Snap-in scale"  Works with single node Ehcache or replicated Ehcache  Simple config via ehcache.xml  High data capacity: 2TB+  Highly available Enterprise Ehcache Terracotta Server Array Terracotta Server Array ColdFusion Enterprise Ehcache ColdFusion … Terracotta Server Array Terracotta Server Array
  • 37. • Stop your ColdFusion server • Rename the following files in your servername/lib directory: ehcache-core-2.5.1.jar  ehcache-core- 2.5.1.jar.original slf4j-api-1.5.6.jar slf4j-api-1.5.6.jar.old slf4j-log4j12-1.5.6.jar  slf4j-log4j12-1.5.6.jar.old • Add the following jar files: From apis/ehcache/lib ehcache-ee-<version>.jar slf4j-api-<version>.jar From apis/toolkit/lib terracotta-toolkit-runtime-ee-<version>.jar Ehcache Terracotta Server ColdFusion Ehcache ColdFusion … Distributed Cache Configuration: Step 1/3
  • 38. Edit your ehcache.xml <ehcache> <terracottaConfig url="someserver:9510"/> <defaultCache maxElementsInMemory="10000" timeToLiveSeconds="120“ overflowToOffHeap="true" maxMemoryOffHeap="2G"> <terracotta clustered="true"> </defaultCache> </ehcache> Ehcache Terracotta Server ColdFusion Ehcache ColdFusion … Distributed Cache Configuration: Step 2/3
  • 39. Start ColdFusion JVM Config in ColdFusion Admin: -X:MaxDirectMemorySize=3G Stop ColdFusion Start the Terracotta server, then restart ColdFusion bin/start-tc-server.sh bin/start-tc-server.bat Ehcache Terracotta Server ColdFusion Ehcache ColdFusion … Distributed Cache Configuration: Step 3/3
  • 40. Terracotta Gotchas  The Terracotta server must be running before you bring up your ColdFusion server, otherwise your page request (that tries to do a cache operation) will spin until the connection times out and an error is returned  Terracotta can only be used with ColdFusion Enterprise. There’s a bug if you try to use it with the Developer Edition where ColdFusion will return an error telling you it’s an Enterprise Only feature.
  • 42. Installing the Terracotta Management Console 1. Ensure JAVA_HOME is set 2. Extract the BigMemory go files 3. Start the monitor server: /management-console/lib/start-tmc.bat 4. Configure ehcache (auth_cache.xml) and add monitoring line: <managementRESTService enabled="true" bind="0.0.0.0:9888" /> 5. Open the web browser to http://localhost:9889/tmc
  • 44. Q&A Rob Brooks-Bilson Senior Director 1900 South Price Road Chandler, AZ 85286 Tel (480) 786-7748 Fax (480) 821-9777 rbils@amkor.com Twitter: @styggiti