Advertisement
kvitso

ehcache.xml

Oct 27th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.76 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <ehcache xmlns="http://ehcache.org/ehcache.xsd"
  3.         name="dma-cache">
  4.  
  5.     <diskStore path="java.io.tmpdir"/>
  6.  
  7.     <defaultCache
  8.        maxElementsInMemory="2000"
  9.        eternal="true"
  10.        overflowToDisk="false"
  11.        memoryStoreEvictionPolicy="LRU"/>
  12.  
  13.     <cache name="org.hibernate.cache.internal.StandardQueryCache"
  14.           maxElementsInMemory="2000"
  15.           eternal="true"
  16.           overflowToDisk="false"
  17.           memoryStoreEvictionPolicy="LRU"
  18.           />
  19.  
  20.     <cache name="org.hibernate.cache.spi.UpdateTimestampsCache"
  21.           maxElementsInMemory="2000"
  22.           eternal="true"
  23.           overflowToDisk="false"
  24.           memoryStoreEvictionPolicy="LRU"
  25.           />
  26. </ehcache>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement