4、0 # 设定 shinker 执行时间间隔jcs.default.cacheattributes.ShrinkerIntervalSeconds=60 # 设定 element 属性类别jcs.default.elementattributes=org.apache.jcs.engine.ElementAttributes # 设定让 element 会「过期」 单词Eternal(永久的意思)jcs.default.elementattributes.IsEternal=false # 设定 element 建立后能存活多久,IsEternal=false时有效jcs.defau
5、lt.elementattributes.MaxLifeSeconds=21600 # 设定 element 可闲置的时间,IsEternal=false时有效jcs.default.elementattributes.IdleTime=1800如果你想设定不同的 region# 以此类推jcs.myregion=jcs.myregion.cacheattributes= org.apache.jcs.engine.CompositeCacheAttributes三、在程序中使用import org.apache.jcs.JCS;import org.apache.jcs.ac
6、cess.exception.CacheException; public class Example { public static void main(String[] args) throws CacheException { // 使用 test region // 如果没有设定会引用 default 的设定 JCS cache = JCS.getInstance("test"); // 用 String 来测试 // 因为他有实作 Serializable cache.put("qrtt1", "foolish"); Syst
7、em.out.println(cache.get("qrtt1")); cache.dispose(); }}import org.apache.jcs.JCS;import org.apache.jcs.access.exception.CacheException; public class Example { public static void main(String[] args) throws CacheException {