• 授权协议:-
  • 开发厂商:-
  • 软件语言:Java
  • 更新日期:2017-03-05
atoms

atoms 是一个基于J2Cache思想实现的二级缓存系统。支持2级并不限于2级的多级缓存系统。配置方式支持spring配置,和atoms原生xml配置。

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

atoms 基于 J2Cache 的二级缓存系统 相关推荐

atoms 基于 J2Cache 的二级缓存系统 评论内容