如何在Jboss 7 1 1 Final中集群infinispan缓存?

时间:2013-10-09 09:18:51

标签: spring jboss7.x redhat infinispan

Bean Decleration:

bean id="cacheManager" class="org.infinispan.spring.provider.SpringEmbeddedCacheManagerFactoryBean"
      p:configurationFileLocation="classpath:infinispan.xml" ..

infinispan.xml

<infinispan
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="urn:infinispan:config:5.1 http://www.infinispan.org/schemas/infinispan-config-5.1.xsd"
xmlns="urn:infinispan:config:5.1">

<global>
    <transport clusterName="CASCluster"/>
    <globalJmxStatistics enabled="true"/>
</global>

<default>
    <jmxStatistics enabled="true"/>
    <clustering mode="distribution">
        <hash numOwners="2" rehashRpcTimeout="120000"/>
        <sync/>
    </clustering>
</default>

<namedCache name="mtx.infinispan.global">
    <eviction strategy="LIRS" maxEntries="50000" />
</namedCache>

<namedCache name="books">
    <eviction strategy="LIRS" maxEntries="50000" />
</namedCache>

<namedCache name="scheduleprofiletemplates">
    <eviction maxEntries="1000000" strategy="LIRS" />

    <loaders passivation="false" shared="false" preload="true">
        <!-- We can have multiple cache loaders, which get chained -->

        <loader class="org.infinispan.loaders.file.FileCacheStore" 
            fetchPersistentState="true" purgerThreads="3" purgeSynchronously="true"
            ignoreModifications="false" purgeOnStartup="false">
            <!-- See the documentation for more configuration examples and flags. -->
            <properties>
                <property name="location" value="/home/cas/infinispanCache" />
            </properties>

        </loader>
    </loaders>
</namedCache>


我想部署应用程序Jboss集群,以便在一个节点中创建的缓存也可以访问/复制到其他节点....

我正在使用Jboss Domain模式full-ha进行部署....我有HornetQ,Mod_cluster在同一个集群上正常工作。

通过谷歌搜索,我知道它通过JNDI实现....你能告诉tel如何修改XMl文件到achiiev这....我必须创建4个命名缓存(在哪里创建这个?在sping配置文件或Jboss domain.xml)。

提前致谢

1 个答案:

答案 0 :(得分:0)

  1. 创建一个Jboss群集全ha配置文件。 2.在Jboss方面创建queus 3.Ovveride SpringEmbeddedCacheManagerFactoryBean cacheManager