我有一个部署在 Jboss AS 7 中的应用程序在不同服务器的多个节点上运行,我正在尝试使用 infinispan 5.2 来缓存数据。问题是缓存值没有在不同的服务器之间复制,它只能从同一个节点访问。
此处给出了用于缓存的配置
<cache-container name="cluster" aliases="ha-partition" default-cache="cache" jndi-name="java:jboss/infinispan/container/cluster">
<transport lock-timeout="10000"/>
<distributed-cache name="cache" mode="SYNC" start="EAGER" batching="false">
<locking isolation="REPEATABLE_READ"/>
<eviction strategy="LIRS" max-entries="1000"/>
<expiration lifespan="300000" />
</distributed-cache>
</cache-container>
我也尝试过使用复制缓存而不是分布式缓存。
该标记在我的 web.xml 中定义。