# atoms **Repository Path**: smallcarp/atoms ## Basic Information - **Project Name**: atoms - **Description**: 多级缓存系统 - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 39 - **Created**: 2017-05-05 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 基于j2cache的理念,重新设计开发的一套分布式缓存。。 github地址:[atoms](https://github.com/zhitongjob/atoms) ## Who's using atoms? ![职通网](http://www.zhitongjob.com/images/logo.png) [职通网] (http://www.zhitongjob.com) 配置文件 ``` ``` 使用代码: ``` java 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); } } ``` Spring配置参考atoms-config/src/test/resources/applicationContext.xml