我目前正在使用企业版的EhCache在我们的应用程序中实现缓存。正如here所解释的那样,我使用EhCache类中的以下构造函数以编程方式创建两个不同的缓存实例,我用它来管理EhCache创建:
public class EhCache implements ICacheAccess {
private String name;
private Cache ehCache;
private CacheAttributes attrs;
public EhCache(final String name, final CacheAttributes attrs) {
this.name = name;
this.attrs = attrs;
Configuration configuration = new Configuration();
TerracottaClientConfiguration terracottaConfig
= new TerracottaClientConfiguration();
configuration.addTerracottaConfig(terracottaConfig);
final CacheConfiguration cfg = new CacheConfiguration(name, attrs.cacheSize)
.eternal(attrs.eternal).terracotta(new TerracottaConfiguration())
.timeToLiveSeconds(attrs.timeToLiveSeconds)
.timeToIdleSeconds(attrs.timeToIdleSeconds)
.statistics(attrs.statistics).overflowToOffHeap(true).maxBytesLocalOffHeap(200,MemoryUnit.MEGABYTES);
configuration.addCache(cfg);
CacheConfiguration defaultCache = new CacheConfiguration("default",
1000).eternal(false);
configuration.addDefaultCache(defaultCache);
CacheManager mgr = CacheManager.create(configuration);
ehCache = mgr.getCache(name);
LOGGER.log("ehcache is "+ehCache);
}
}
然后我使用以下方法创建我的EhCache类的两个实例:
public void testCreateCache(String name) {
CacheAttributes attrs = new CacheAttributes();
attrs.timeToIdleSeconds = 0;
attrs.timeToLiveSeconds = 0;
Cache cache = new EhCache(name, attrs);
}
我在main方法中调用了上面的方法两次:
testCreateCache("cache1");
testCreateCache("cache2");
缓存1已成功创建,但cache2为null。
如果我改变了创建缓存的顺序:
testCreateCache("cache2");
testCreateCache("cache1");
缓存2已成功创建,但cache1为空。
我无法理解为什么会这样。第一个缓存已成功创建,但第二个缓存始终为空。
答案 0 :(得分:1)
我认为你的问题是你调用CacheManager.create()两次,因为CacheManager是一个Singleton。将两个缓存添加到Configuration对象后,尝试调用一次。