19 lines
574 B
XML
19 lines
574 B
XML
<!-- <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"
|
|
monitoring="autodetect" dynamicConfig="true">
|
|
|
|
<diskStore path="java.io.tmpdir" />
|
|
<diskStore path="c:\\cacheTest" />
|
|
|
|
<cache name="testFindCache"
|
|
maxEntriesLocalHeap="10000"
|
|
maxEntriesLocalDisk="100000"
|
|
eternal="false"
|
|
diskSpoolBufferSizeMB="20"
|
|
timeToIdleSeconds="300" timeToLiveSeconds="600"
|
|
memoryStoreEvictionPolicy="LFU"
|
|
transactionalMode="off">
|
|
<persistence strategy="localTempSwap" />
|
|
</cache>
|
|
|
|
</ehcache> --> |