我正在使用JCS 1.3缓存开发Web应用程序。
我需要在运行时从JVM属性编辑索引磁盘辅助缓存的DiskPath。
你知道这样做的方法吗?
我设法创建了AuxiliaryCache对象,但是我不知道如何将其与cache.ccf中定义的所有区域连接。
这是创建磁盘缓存的代码:
IndexedDiskCacheAttributes indexedCacheAttr = new IndexedDiskCacheAttributes();
indexedCacheAttr.setMaxKeySize(10000);
indexedCacheAttr.setMaxRecycleBinSize(10000);
indexedCacheAttr.setMaxPurgatorySize(10000);
indexedCacheAttr.setOptimizeAtRemoveCount(5000);
String cacheDir = System.getProperty("xxxxx");
if (cacheDir == null || cacheDir.trim().length() == 0) {
log.error("error:JCSManager xxxx.");
} else {
indexedCacheAttr.setDiskPath(cacheDir);
}
IndexedDiskCacheManager indexedCacheManager =
IndexedDiskCacheManager.getInstance(indexedCacheAttr);
// instance du cache disque
AuxiliaryCache auxCache = indexedCacheManager.getCache(region);
要获得区域,请使用以下命令:
JCS cache = JCS.getInstance(region);
请问一个主意吗?
最佳答案
最后,我们从Web应用程序的类路径中提取了JCS conf文件(cache.ccf)。
我为此文件添加了JVM属性。在访问JCS区域之前,我先加载属性,然后使用CompositeCacheManager类配置JCS。
String jcsConfFile = System.getProperty("XXXXXX");
if (jcsConfFile == null || jcsConfFile.trim().length() == 0) {
log.error("error:JCSManager .........");
} else {
Properties props = new Properties();
try {
// load a properties file
props.load(new FileInputStream(jcsConfFile));
} catch (IOException e) {
log.error("error:JCSManager ........", e);
}
CompositeCacheManager ccm = CompositeCacheManager.getUnconfiguredInstance();
ccm.configure(props);
}
//....
// later, ask for the region
JCS cache = JCS.getInstance(region);
source of the solution
关于java - JCS编辑磁盘辅助缓存DiskPath,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15297855/