android开发常用的缓存策略详解(3)- 缓存中的时间超过我们设定的值,将其删除

来源:互联网 发布:2016禁毒网络知识竞赛 编辑:程序博客网 时间:2024/05/29 19:20

这个小编就不做过多的讲解了,还是以Universal-Image-Loader 中的LimitedAgeMemoryCache 为例进行代码的分析

提供缓存的特殊功能:如果某些缓存对象的时间超过定义值,则该对象将从缓存中删除

public class LimitedAgeMemoryCache<K, V> implements MemoryCacheAware<K, V> {    private final MemoryCacheAware<K, V> cache;    private final long maxAge;    private final Map<K, Long> loadingDates = Collections.synchronizedMap(new HashMap<K, Long>());    /**     * @param cache  Wrapped memory cache     * @param maxAge Max object age <b>(in seconds)</b>. If object age will exceed this value then it'll be removed from     *               cache on next treatment (and therefore be reloaded).     */    public LimitedAgeMemoryCache(MemoryCacheAware<K, V> cache, long maxAge) {        this.cache = cache;        this.maxAge = maxAge * 1000; // to milliseconds    }    @Override    public boolean put(K key, V value) {        boolean putSuccesfully = cache.put(key, value);        if (putSuccesfully) {            loadingDates.put(key, System.currentTimeMillis());        }        return putSuccesfully;    }    @Override    public V get(K key) {        Long loadingDate = loadingDates.get(key);        if (loadingDate != null && System.currentTimeMillis() - loadingDate > maxAge) {            cache.remove(key);               loadingDates.remove(key);        }//判断如果超过了预设的时间进行响应的删除        return cache.get(key);    }    @Override    public void remove(K key) {        cache.remove(key);        loadingDates.remove(key);    }    @Override    public Collection<K> keys() {        return cache.keys();    }    @Override    public void clear() {        cache.clear();        loadingDates.clear();    }
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 没买快递收到怎么办 淘宝介入卖家不举证怎么办 买家拒收快递货怎么办 买家到付拒收怎么办 买家发顺丰到付又拒收怎么办 到付快递骗局怎么办 一年级学生上课走神怎么办 网购出现质量问题怎么办 小米分期没额度怎么办 小米预约错了怎么办 小米商城缺货要怎么办 LG显示器不满屏怎么办 网页页面放大了怎么办 JSP样式失效了怎么办? 客户故意不结账怎么办 面对刁难的顾客怎么办 万家乐燃气灶具不好打火怎么办 垃圾处理器堵了怎么办 银赫入伍金俊秀怎么办 孕妇被蜈蚣咬了怎么办 苹果id密码忘了怎么办 苹果6触屏失灵怎么办 阴道里长尖锐疣怎么办 毛笔笔尖泡弯了怎么办 长智齿了很疼怎么办 买彩票中大奖了怎么办 被小蜈蚣咬了怎么办 微信被盗刷钱了怎么办 眼结膜下出血该怎么办 金珠娜没有你该怎么办 晕血的人来月经怎么办 真丝衣服洗花了怎么办 窦性心动过缓怎么办 苹果id账号忘了怎么办 驾照换证过期了怎么办 充电宝灯一直亮怎么办 淘宝充值未到账怎么办 中银购物商城卡怎么办 窝沟封闭掉了怎么办 手被菜刀割破了怎么办 微信转账转错了怎么办