Call us: +1-415-738-4000
Grails 1.2RC1 and higher use Ehcache as the default Hibernate second level cache. However earlier versions of Grails ship with the Ehcache library and are very simple to enable. The following steps show how to configure Grails to use Ehcache. For 1.2RC1 and higher some of these steps are already done for you.
Edit DataSource.groovy as follows:
hibernate {
cache.use_second_level_cache=true
cache.use_query_cache=true
cache.provider_class='org.hibernate.cache.EhCacheProvider'
}
As is usual with Hibernate, it will use the defaultCache configuration as a template to create new caches as required.
For production use you often want to customise the cache configuration. To do so, add an ehcache.xml configuration file
to the conf directory (the same directory that contains DataSource.groovy).
A sample ehcache.xml which works with the Book demo app and is good as a starter configuration for Grails is shown below:
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ehcache.xsd" >
<diskStore path="java.io.tmpdir"/>
<cacheManagerEventListenerFactory class="" properties=""/>
<defaultCache
maxElementsInMemory="10000"
eternal="false"
timeToLiveSeconds="120"
overflowToDisk="false"
diskPersistent="false"
/>
<cache name="Book"
maxElementsInMemory="10000"
timeToIdleSeconds="300"
/>
<cache name="org.hibernate.cache.UpdateTimestampsCache"
maxElementsInMemory="10000"
timeToIdleSeconds="300"
/>
cache name="org.hibernate.cache.StandardQueryCache"
maxElementsInMemory="10000"
timeToIdleSeconds="300"
/>
</ehcache>
The Springcache plugin allows you to easily add the following functionality to your Grails project:
The plugin depends on the EhCache and EhCache-Web libraries. See Springcache Plugin, a part of the Grails project, for more information.
This is handled by Terracotta Web Sessions. See this blog for a great intro on getting this going with Grails and Tomcat.
