All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ommon.common-hibernate.1.4.source-code.ehcache.xml Maven / Gradle / Ivy

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
         updateCheck="false"
         name="cacheManager"
		>

	<diskStore path="java.io.tmpdir"/>

	<defaultCache
			maxElementsInMemory="400000"
			eternal="false"
			timeToIdleSeconds="0"
			timeToLiveSeconds="1800"
			overflowToDisk="false"
			diskPersistent="false"
			diskExpiryThreadIntervalSeconds="120"
			memoryStoreEvictionPolicy="LRU"
			/>

	<cache name="org.hibernate.cache.internal.StandardQueryCache"
	       maxEntriesLocalHeap="25"
	       eternal="false"
	       timeToIdleSeconds="1800"
	       timeToLiveSeconds="3600">
		<persistence strategy="localTempSwap"/>
	</cache>

	<cache name="org.hibernate.cache.spi.UpdateTimestampsCache"
	       maxEntriesLocalHeap="5000"
	       timeToIdleSeconds="1800"
	       timeToLiveSeconds="3600"
	       eternal="false">
		<persistence strategy="localTempSwap" />
	</cache>

</ehcache>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy