您的位置:首页 > 其它

Ecache配置文件

2015-07-30 23:44 190 查看
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
	<diskStore path="java.io.tmpdir" />

	<defaultCache maxElementsInMemory="1000" eternal="false"
		overflowToDisk="true" timeToIdleSeconds="300" timeToLiveSeconds="180"
		diskPersistent="false" diskExpiryThreadIntervalSeconds="120" />

	<cache name="org.hibernate.cache.internal.StandardQueryCache"
		maxElementsInMemory="1000" eternal="false" timeToLiveSeconds="120"
		overflowToDisk="true" />
	<cache name="org.hibernate.cache.spi.UpdateTimestampsCache"
		maxElementsInMemory="500" eternal="true" overflowToDisk="true" />

	<cache name="all" maxElementsInMemory="1000" eternal="false"
		overflowToDisk="true" timeToIdleSeconds="120" timeToLiveSeconds="120"
		diskPersistent="false" diskExpiryThreadIntervalSeconds="120" />
</ehcache>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: