Skip to content

Instantly share code, notes, and snippets.

@crised
Created February 12, 2013 14:09
Show Gist options
  • Save crised/4770110 to your computer and use it in GitHub Desktop.
Save crised/4770110 to your computer and use it in GitHub Desktop.
<subsystem xmlns="urn:jboss:domain:infinispan:1.3">
<cache-container name="hibernate" default-cache="local-query" module="org.jboss.as.jpa.hibernate:4">
<local-cache name="entity">
<transaction mode="NON_XA"/>
<eviction strategy="LRU" max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="local-query">
<transaction mode="NONE"/>
<eviction strategy="LRU" max-entries="10000"/>
<expiration max-idle="100000"/>
</local-cache>
<local-cache name="timestamps">
<transaction mode="NONE"/>
<eviction strategy="NONE"/>
</local-cache>
</cache-container>
<cache-container name="appcache" default-cache="pagination">
<local-cache name="pagination">
<transaction mode="NONE"/>
<eviction strategy="NONE"/>
<expiration max-idle="10000"/>
</local-cache>
</cache-container>
</subsystem>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment