1

我是第一次实施 JCS。

我的要求:我有一个带有 main 方法的 java 类,我在缓存中存储了一些数据。

我有第二个 java 类,它有一个 main 方法,我从使用第一个 java 类存储的磁盘缓存中检索该方法。

请注意:1.我想使用磁盘缓存(JCS)。2. 我想从不同的 JVM 中检索数据。3. 当我运行第一个 Java 类 main 方法时,我应该将数据存储在磁盘缓存中,当我运行第二个 Java 类 main 方法时,我想从使用第一个存储在磁盘中的缓存中检索数据java类主要方法。

1类:主要方法..

public static void main(String[] args) {
//   Initialize the JCS object and get an instance of the default cache region
    try {
        JCS cache = JCS.getInstance("default");

    String key = "key0";
    String value = "value0";

    cache.put(key, value);
    cache.put("vasu","dev");


    } catch (CacheException e) {
        e.printStackTrace();
    }
}

类2:主要方法

public static void main (String asd[]){
    try {
        JCS cache = JCS.getInstance("default");


    String cachedData = (String)cache.get("vasu");


//   Check if the retrieval worked
    if (cachedData != null) {
      // The cachedData is valid and can be used
      System.out.println("Valid cached Data: " + cachedData);
    }
    else
         System.out.println("Invalid cached Data: ");

    } catch (CacheException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    catch (Exception e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

缓存.ccf:

jcs.default=DISK_REGION
jcs.default.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes
jcs.default.cacheattributes.MaxObjects=1000
jcs.default.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache
jcs.default.elementattributes.IsEternal=false
jcs.default.elementattributes.MaxLifeSeconds=3600
jcs.default.elementattributes.IdleTime=1800
jcs.default.elementattributes.IsSpool=true
jcs.default.elementattributes.IsRemote=true
jcs.default.elementattributes.IsLateral=true

jcs.region.OUR_REGION=DISK_REGION
jcs.region.OUR_REGION.cacheattributes=org.apache.jcs.engine.CompositeCacheAttributes
jcs.region.OUR_REGION.cacheattributes.MaxObjects=1000
jcs.region.OUR_REGION.cacheattributes.MemoryCacheName=org.apache.jcs.engine.memory.lru.LRUMemoryCache
jcs.region.OUR_REGION.cacheattributes.UseMemoryShrinker=true
jcs.region.OUR_REGION.cacheattributes.MaxMemoryIdleTimeSeconds=3600
jcs.region.OUR_REGION.cacheattributes.ShrinkerIntervalSeconds=60
jcs.region.OUR_REGION.cacheattributes.MaxSpoolPerRun=500
jcs.region.OUR_REGION.elementattributes=org.apache.jcs.engine.ElementAttributes
jcs.region.OUR_REGION.elementattributes.IsEternal=false

jcs.auxiliary.DISK_REGION=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheFactory
jcs.auxiliary.DISK_REGION.attributes=org.apache.jcs.auxiliary.disk.indexed.IndexedDiskCacheAttributes
jcs.auxiliary.DISK_REGION.attributes.DiskPath=c:/jcs/disk_region
jcs.auxiliary.DISK_REGION.attributes.MaxPurgatorySize=10000
jcs.auxiliary.DISK_REGION.attributes.MaxKeySize=10000
jcs.auxiliary.DISK_REGION.attributes.OptimizeAtRemoveCount=300000
jcs.auxiliary.DISK_REGION.attributes.MaxRecycleBinSize=7500
4

1 回答 1

1

我做了两个更改,并实现了上述示例代码的预期结果。

控制台->“有效的缓存数据:dev”

我做了什么

  1. 在默认缓存区域下向 cache.ccf 添加附加行 -

    jcs.default.cacheattributes.DiskUsagePatternName=UPDATE
    
  2. 在第 1 类结束时添加睡眠:main 方法

解释

  1. DiskUsagePattern默认为 SWAP,这意味着缓存元素在元素达到时写入磁盘MaxMemoryIdleTimeSeconds,默认似乎是 60 * 120 秒。DiskUsagePattern什么时候UPDATE,元素被添加到缓存时被写入磁盘。好吧,元素不会同步写入缓存,而是添加到队列中立即写入并返回。因此,如果有人在磁盘上寻找即时且可靠的更新,那么不DiskUsagePattern应该(默认)。UPDATESWAP
  2. 上述队列中的元素立即由标记为守护进程的后台线程处理。真正的磁盘更新发生在这个后台线程中。所以我们需要给这个守护线程一点时间来执行。
于 2013-12-10T18:57:01.350 回答