码迷,mamicode.com
首页 > 其他好文 > 详细

写出一个缓存系统的伪代码001

时间:2017-01-14 23:17:43      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:author   bsp   hash   log   query   get   generate   gen   val   

/**
 * 写出一个缓存系统的伪代码
 * @author ysloong
 *
 */
public class CacheDemo {

    private Map<String, Object> map = new HashMap<String, Object>();
    public static void main(String[] args) {
        // TODO Auto-generated method stub
    }
    
    public synchronized Object getData(String key){ 
        Object value = map.get(key);
        if (value == null){
            return "aaa";//实现QueryDB()
        }
        return value;
    }
}

 

写出一个缓存系统的伪代码001

标签:author   bsp   hash   log   query   get   generate   gen   val   

原文地址:http://www.cnblogs.com/ysloong/p/6286212.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!