Skip to content

Instantly share code, notes, and snippets.

@jsanda
Created August 11, 2012 14:46
Show Gist options
  • Save jsanda/3325015 to your computer and use it in GitHub Desktop.
Save jsanda/3325015 to your computer and use it in GitHub Desktop.
<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