| 7272 |
amit.gupta |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
|
|
|
3 |
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
4 |
xsi:schemaLocation="http://ehcache.org/ehcache.xsd" maxBytesLocalHeap="10M" maxBytesLocalOffHeap="10M">
|
|
|
5 |
<diskStore path="java.io.tmpdir" />
|
|
|
6 |
<defaultCache statistics="true"/>
|
|
|
7 |
|
|
|
8 |
<cache name="HomePageSnippets" maxElementsInMemory="5" eternal="true"
|
|
|
9 |
overflowToDisk="false" statistics="true">
|
|
|
10 |
</cache>
|
|
|
11 |
<cache name="ShowcasePageSnippets" maxElementsInMemory="20" eternal="true"
|
|
|
12 |
overflowToDisk="false" statistics="true">
|
|
|
13 |
</cache>
|
|
|
14 |
<cache name="ProductPageSnippets" maxElementsInMemory="150" eternal="true"
|
|
|
15 |
overflowToDisk="false" memoryStoreEvictionPolicy="LFU" statistics="true">
|
|
|
16 |
</cache>
|
|
|
17 |
<cache name="CategorySnippets" maxElementsInMemory="200" eternal="true"
|
|
|
18 |
overflowToDisk="false" memoryStoreEvictionPolicy="LFU" statistics="true">
|
|
|
19 |
</cache>
|
|
|
20 |
<cache name="SearchSnippets" maxElementsInMemory="200" eternal="true"
|
|
|
21 |
overflowToDisk="false" memoryStoreEvictionPolicy="LFU" statistics="true">
|
|
|
22 |
</cache>
|
|
|
23 |
</ehcache>
|