Java中自己定义缓存方式

说说自己在开发中经常用到的写法。

/**
 * 数据缓存
 * @author
 *
 */
public class DataCache {
    /** 对象缓存*/
    public static Map<String ,MsgPojo>  msgMap = new ConcurrentHashMap<String , MsgPojo>();
    
}

说明:ConcurrentHashMap 线程安全

这样就定义了一个缓存。还是很简单那啊。

写到这里,音乐想起了《小镇姑娘》。。。

还记得多年前,跟你手牵手,你都害羞的不敢抬头,只会傻傻的看着天上的星星,你是那么的纯净。。。。。。

 

posted @ 2016-04-20 23:41  麻雀虽小五脏俱全  阅读(532)  评论(0编辑  收藏  举报