-
Notifications
You must be signed in to change notification settings - Fork 0
/
infinispan-demo.xml
52 lines (48 loc) · 1.69 KB
/
infinispan-demo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright 2011 Red Hat, Inc. and/or its affiliates.
~
~ This is free software; you can redistribute it and/or modify it
~ under the terms of the GNU Lesser General Public License as
~ published by the Free Software Foundation; either version 2.1 of
~ the License, or (at your option) any later version.
~
~ This software is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
~ Lesser General Public License for more details.
~
~ You should have received a copy of the GNU Lesser General Public
~ License along with this library; if not, write to the Free Software
~ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
~ 02110-1301 USA
-->
<infinispan
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:infinispan:config:5.2 http://www.infinispan.org/schemas/infinispan-config-5.2.xsd"
xmlns="urn:infinispan:config:5.2">
<global>
<globalJmxStatistics allowDuplicateDomains="true"/>
<transport siteId="localsite">
<properties>
<property name="configurationFile" value="jgroups-udp.xml" />
</properties>
</transport>
<shutdown hookBehavior="DONT_REGISTER" />
</global>
<default>
<clustering mode="distribution">
<l1 enabled="false" />
<hash
numOwners="2"
numVirtualNodes="48"/>
<async/>
</clustering>
<eviction
maxEntries="10000000"
strategy="LIRS" />
<!--
<expiration lifespan="1000" maxIdle="500" wakeupInterval="1000"/>
-->
</default>
</infinispan>