12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- IBM Confidential
- OCO Source Materials
- BI and PM: CM
- (C) Copyright IBM Corp. 2013
- The source code for this program is not published or otherwise
- divested of its trade secrets, irrespective of what has been
- deposited with the U.S. Copyright Office.
- -->
-
- <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="ehcache.xsd"
- updateCheck="false"
- dynamicConfig="true"
- name="repositoryservice" >
-
- <defaultCache
- maxElementsInMemory="0"
- eternal="false"
- overflowToDisk="true"
- timeToIdleSeconds="1200"
- timeToLiveSeconds="1200">
- </defaultCache>
- <cache name="repository"
- maxElementsInMemory="100"
- maxElementsOnDisk="1000"
- eternal="false"
- overflowToDisk="true"
- diskSpoolBufferSizeMB="100"
- timeToLiveSeconds="1200"
- memoryStoreEvictionPolicy="LRU"
- />
- <cache name="imc"
- maxElementsInMemory="200"
- eternal="false"
- overflowToDisk="true"
- diskSpoolBufferSizeMB="30"
- timeToLiveSeconds="300"
- memoryStoreEvictionPolicy="LRU"
- />
- </ehcache>
|