假设类A为持久化对象,对应表为tableA,这里没有考虑A和其他表关联的情况。
在spring下配置使用二级缓存:
<props>
........
<prop key="hibernate.cache.provider_class">${hibernate.cache.provider_class}</prop>
<prop key="hibernate.cache.use_query_cache">${hibernate.cache.use_query_cache}</prop>
</props>
</property>
其中${hibernate.cache.provider_class}为net.sf.ehcache.hibernate.EhCacheProvider,${hibernate.cache.use_query_cache}属性值为true(对经常使用的List查询方式,只有在使用查询缓存时,才会从缓存中通过id去get缓存的值;查询缓存一般缓存查询语句和查询结果的id)
A的持久化映射文件中加上cache元素:usage属性的取值根据自己的情况自己指定相应的值
配置spring的HibernateTemplate对查询语句和结果缓存(cacheQueries值为true):
class="org.springframework.orm.hibernate3.HibernateTemplate">
<property name="sessionFactory"><ref bean="sessionFactory"/></property>
<property name="cacheQueries" value="${hibernate.cache.use_query_cache}"></property>
</bean>
开发的spring dao(集成HibernateDaoSupport)应该配置实用这个hibernateTemplate:
<bean id="myDao" class="subclass of HibernateDaoSupport">
<property name="hibernateTemplate" ref="hibernateTemplate" />
<property name="jdbcTemplate" ref="jdbcTemplate" />
</bean>
在src下新建ehcache.xml文件,文件内容如下:
<diskStore path="java.io.tmpdir"/>
<!--
eternal:元素是否永久的;
MemoryStoreEvictionPolicy:default is LRU
-->
<defaultCache maxElementsInMemory="10000"
eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120"
overflowToDisk="true" diskPersistent="false" diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"/>
<cache name="cn.hnisi.persistence.mmedia.Dmtjbxx"
maxElementsInMemory="500" eternal="false"
timeToIdleSeconds="2400" timeToLiveSeconds="3600"
overflowToDisk="false"/>
<cache name="org.hibernate.cache.StandardQueryCache"
maxElementsInMemory="50" eternal="false" timeToIdleSeconds="600"
timeToLiveSeconds="1200" overflowToDisk="false"/>
<cache name="org.hibernate.cache.UpdateTimestampsCache"
maxElementsInMemory="500" eternal="true" overflowToDisk="false"/>
</ehcache>
然后你可以使用HQL查询对象了,比如"from A where name=?";
跟踪查询的sql日志就可以看出第一次是查询数据库,第二次是从缓存中get(见Hibernate ReadWriteCache类的get方法)
问题:什么样的数据适合存放到第二级缓存中?