atoms 基于 J2Cache 的二级缓存系统 项目简介
atoms 是一个基于 J2Cache 思想实现的二级缓存系统。支持2级并不限于2级的多级缓存系统。广播支持 zookeeper,redis,jgroups缓存支持 ehcache,redis,ssdb序列化支持 fst,kryo,kryopool,java自身序列化配置方式支持spring配置,和atoms原生xml配置。使用代码:CacheChannel cc=CacheChannel.getInstance();
cc.set("jobell", "hello", "nihaoya");
cc.evict("jobell", "hello");
while(true){
Object value=cc.get("jobell", "hello");
if(value==null){
System.out.println("==============="+value);
}else{
System.out.println("==============="+value);
}
}
cc.set("jobell", "hello", "nihaoya");
cc.evict("jobell", "hello");
while(true){
Object value=cc.get("jobell", "hello");
if(value==null){
System.out.println("==============="+value);
}else{
System.out.println("==============="+value);
}
}