reps_ehcache.xml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. IBM Confidential
  4. OCO Source Materials
  5. BI and PM: CM
  6. (C) Copyright IBM Corp. 2013
  7. The source code for this program is not published or otherwise
  8. divested of its trade secrets, irrespective of what has been
  9. deposited with the U.S. Copyright Office.
  10. -->
  11. <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  12. xsi:noNamespaceSchemaLocation="ehcache.xsd"
  13. updateCheck="false"
  14. dynamicConfig="true"
  15. name="repositoryservice" >
  16. <defaultCache
  17. maxElementsInMemory="0"
  18. eternal="false"
  19. overflowToDisk="true"
  20. timeToIdleSeconds="1200"
  21. timeToLiveSeconds="1200">
  22. </defaultCache>
  23. <cache name="repository"
  24. maxElementsInMemory="100"
  25. maxElementsOnDisk="1000"
  26. eternal="false"
  27. overflowToDisk="true"
  28. diskSpoolBufferSizeMB="100"
  29. timeToLiveSeconds="1200"
  30. memoryStoreEvictionPolicy="LRU"
  31. />
  32. <cache name="imc"
  33. maxElementsInMemory="200"
  34. eternal="false"
  35. overflowToDisk="true"
  36. diskSpoolBufferSizeMB="30"
  37. timeToLiveSeconds="300"
  38. memoryStoreEvictionPolicy="LRU"
  39. />
  40. </ehcache>