我正在为应用程序中的缓存数据寻找最佳解决方案,该解决方案将在具有多个JVM的大型集群上运行。我需要在缓存中存储让我们说“value_to_cache”并且可以在另一个JVM(最有可能)上将其与其他值进行比较,并在需要时删除/更新(或删除并创建新的)。应用程序将使用Java-EJB 3.1技术进行开发,并部署在Jboss 6或7上
我在Google上搜索答案,所以我找到了:
用JPA休眠
Infinispan的
HAPartition服务
我希望得到严格的答复,但找不到答案。所以我的问题是最好的方法是什么?为什么?
答案 0 :(得分:4)
Infinispan 是 JBoss 7 上的默认缓存提供程序。如果您需要应用程序服务器附带的解决方案,那么您必须坚持使用此框架。
对于 JPA实体,second-level cache已经存在(实际上是预定义的Infinispan缓存)。只需按照JPA reference guide即可开始使用。
如果您需要更通用的解决方案,还可以创建自定义 Infinispan 缓存。假设您在JBoss 7(基本群集模式)上以ha
模式运行domain
配置文件:
<profile name="ha">
...
<subsystem xmlns="urn:jboss:domain:infinispan:1.2" default-cache-container="cluster">
...
<cache-container name="myCacheCont" default-cache="myCache">
<!-- Adjust replication settings below (sync/async etc.) -->
<transport lock-timeout="60000"/>
<replicated-cache name="myCache" mode="SYNC" batching="true">
<locking isolation="REPEATABLE_READ"/>
</replicated-cache>
</cache-container>
</subsystem>
...
</profile>
在这种情况下,可以通过标准@Resource
查找获取缓存引用:
@Stateless
public class MyEJB implements SomeService {
@Resource(lookup="java:jboss/infinispan/myCacheCont")
private org.infinispan.manager.CacheContainer container;
...
void doSomethingWithCache() {
org.infinispan.Cache cache = container.getCache("myCache");
...
cache.put(...); // Data will be replicated to different nodes, if configured properly
}
}
不要忘记在项目中添加org.infinispan
作为模块依赖项。