Created
August 11, 2012 14:46
-
-
Save jsanda/3325015 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> | |
<transport> | |
<properties> | |
<property name="configurationFile" value="jgroups-tcp.xml"/> | |
</properties> | |
</transport> | |
</global> | |
<default> | |
<clustering mode="distribution"> | |
<async/> | |
<hash numOwners="1"/> | |
</clustering> | |
<loaders> | |
<loader class="org.infinispan.loaders.jdbm.JdbmCacheStore" | |
fetchPersistentState="false" | |
ignoreModifications="false"> | |
<async enabled="true"/> | |
<properties> | |
<property name="location" value="target/infinispan"/> | |
</properties> | |
</loader> | |
</loaders> | |
</default> | |
</infinispan> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment