Project

General

Profile

1
<?xml version="1.0" ?>
2
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
         xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="true"
4
         monitoring="autodetect" dynamicConfig="true">
5

    
6
    <defaultCache
7
            maxElementsInMemory="100000"
8
            eternal="true"
9
            overflowToDisk="false"
10
    />
11

    
12
    <cache
13
            name="eu.dnetlib.goldoa.domain.User"
14
            maxElementsInMemory="100000"
15
            eternal="true"
16
    />
17

    
18

    
19
    <cache name="org.hibernate.cache.internal.StandardQueryCache"
20
           maxElementsInMemory="100000" eternal="false">
21
    </cache>
22

    
23
    <cache name="org.hibernate.cache.spi.UpdateTimestampsCache"
24
           maxElementsInMemory="500000" eternal="true">
25
    </cache>
26

    
27

    
28

    
29
</ehcache>
(1-1/2)