Created
May 13, 2020 14:08
-
-
Save jmesnil/1a1a12ff057e36df781d1b2f0cd35e51 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
<subsystem xmlns="urn:jboss:domain:infinispan:9.0"> | |
<cache-container name="web" default-cache="repl" module="org.wildfly.clustering.web.infinispan"> | |
<transport lock-timeout="60000"/> | |
<replicated-cache name="repl"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
<file-store/> | |
</replicated-cache> | |
<replicated-cache name="sso"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
</replicated-cache> | |
<replicated-cache name="routing"/> | |
<distributed-cache name="dist"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
<file-store/> | |
</distributed-cache> | |
</cache-container> | |
<cache-container name="server" aliases="singleton cluster" default-cache="default" module="org.wildfly.clustering.server"> | |
<transport lock-timeout="60000"/> | |
<replicated-cache name="default"> | |
<transaction mode="BATCH"/> | |
</replicated-cache> | |
</cache-container> | |
<cache-container name="ejb" aliases="sfsb" default-cache="repl" module="org.wildfly.clustering.ejb.infinispan"> | |
<transport lock-timeout="60000"/> | |
<replicated-cache name="repl"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
<object-memory size="10000"/> | |
<file-store/> | |
</replicated-cache> | |
<distributed-cache name="dist"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
<file-store/> | |
</distributed-cache> | |
</cache-container> | |
<cache-container name="hibernate" default-cache="local-query" module="org.infinispan.hibernate-cache"> | |
<transport lock-timeout="60000"/> | |
<local-cache name="local-query"> | |
<object-memory size="10000"/> | |
<expiration max-idle="100000"/> | |
</local-cache> | |
<invalidation-cache name="entity"> | |
<object-memory size="10000"/> | |
<expiration max-idle="100000"/> | |
</invalidation-cache> | |
<replicated-cache name="timestamps"/> | |
</cache-container> |
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
<subsystem xmlns="urn:jboss:domain:infinispan:9.0"> | |
<cache-container name="hibernate" default-cache="local-query" module="org.infinispan.hibernate-cache"> | |
<transport lock-timeout="60000"/> | |
<local-cache name="local-query"> | |
<object-memory size="10000"/> | |
<expiration max-idle="100000"/> | |
</local-cache> | |
<invalidation-cache name="entity"> | |
<object-memory size="10000"/> | |
<expiration max-idle="100000"/> | |
</invalidation-cache> | |
<replicated-cache name="timestamps"/> | |
</cache-container> | |
<cache-container name="web" default-cache="repl" module="org.wildfly.clustering.web.infinispan"> | |
<transport lock-timeout="60000"/> | |
<replicated-cache name="repl"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
<file-store/> | |
</replicated-cache> | |
<replicated-cache name="sso"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
</replicated-cache> | |
<replicated-cache name="routing"/> | |
<distributed-cache name="dist"> | |
<locking isolation="REPEATABLE_READ"/> | |
<transaction mode="BATCH"/> | |
<file-store/> | |
</distributed-cache> | |
</cache-container> | |
</subsystem> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment