Infinispan Cache Container Configuration: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 6: Line 6:


As described in the [[Infinispan Concepts#Cache_Container|Cache Container section]] of the Infinispan Concepts page, the <tt><cache-container></tt> element contains global configuration for a set of caches.
As described in the [[Infinispan Concepts#Cache_Container|Cache Container section]] of the Infinispan Concepts page, the <tt><cache-container></tt> element contains global configuration for a set of caches.
<pre>       
<subsystem xmlns="urn:infinispan:server:core:6.4">
  <cache-container name="clustered" default-cache="default" statistics="true">
    <transport executor="infinispan-transport" lock-timeout="60000"/>
      <distributed-cache name="default" ... /
  </cache-container>
...
</subsystem>
</pre>

Revision as of 15:52, 31 May 2016

Internal

Overview

As described in the Cache Container section of the Infinispan Concepts page, the <cache-container> element contains global configuration for a set of caches.

        
<subsystem xmlns="urn:infinispan:server:core:6.4">
  <cache-container name="clustered" default-cache="default" statistics="true">
    <transport executor="infinispan-transport" lock-timeout="60000"/>
      <distributed-cache name="default" ... /
  </cache-container>
 ...
</subsystem>