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); } }
评论