码迷,mamicode.com
首页 > 系统相关 > 详细

LruCache缓存方法

时间:2015-06-24 16:23:18      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:缓存   lrucache   

package android.util;
public class LruCache <K, V>{
    public LruCache(int maxSize){}
    ...
}

LRU是Least Recently Used 近期最少使用算法。内存管理的一种页面置换算法,对于在内存中但又不用的数据块(内存块)叫做LRU,操作系统会根据哪些数据属于LRU而将其移出内存.
明白了LRU,从字面意思就能明白LruCache的作用了。
先看看developer怎么说:
A cache that holds strong references to a limited number of values.Each time a value is accessed,it is moved to the head of a queue.When a value is added to a full cache ,the value at the end of that queue is evicted and may become eligible for garbage collection.
这段说的是它的原理,之后的说的是它的方法,就不写上来了。
LruCache使用强引用hold住制定数量的资源不被回收掉,又按照LRU的规则,把后进来的放进队列的头部,当加入的数据超过指定的size的时候从队尾开始删除。
列一下它所有的方法:

 public final V get(K key) { /* compiled code */ }

    public final V put(K key, V value) { /* compiled code */ }

    public void trimToSize(int maxSize) { /* compiled code */ }

    public final V remove(K key) { /* compiled code */ }

    protected void entryRemoved(boolean evicted, K key, V oldValue, V newValue) { /* compiled code */ }

    protected V create(K key) { /* compiled code */ }

    protected int sizeOf(K key, V value) { /* compiled code */ }

    public final void evictAll() { /* compiled code */ }

    public final synchronized int size() { /* compiled code */ }

    public final synchronized int maxSize() { /* compiled code */ }

    public final synchronized int hitCount() { /* compiled code */ }

    public final synchronized int missCount() { /* compiled code */ }

    public final synchronized int createCount() { /* compiled code */ }

    public final synchronized int putCount() { /* compiled code */ }

    public final synchronized int evictionCount() { /* compiled code */ }

    public final synchronized java.util.Map<K,V> snapshot() { /* compiled code */ }

    public final synchronized java.lang.String toString() { /* compiled code */ }
}

典型的数据结构方法,存取计数一类。

private LruCache<Integer, String> mCache;
    int size = 5;
    mCache = new LruCache<Integer,String>(size){
            @Override
            protected int sizeOf(Integer key,String value){
                return 0;
            }
        };
        for(int i=0;i <10;i++) {
            mCache.put(i, "i");
        }
        for(int i=0;i <10;i++) {
            String tempValue = mCache.get(i);
            if(tempValue ==null) {
                mCache.put(i, "i");
            }
        }
        System.out.println(mCache);

因为看到有toString方法,所以想着打印一下,

I/System.out(6418): LruCache[maxSize=5,hits=10,misses=0,hitRate=100%]

打印出来的LruCache包含了最大值maxSize,hits,hitRate,misses命中率的内容。
因为我们put了K,V进去所以读取的时候可以命中,如果没有提前put键值对进去命中率就会反过来。
至此简单的LruCache基本明了。

LruCache缓存方法

标签:缓存   lrucache   

原文地址:http://blog.csdn.net/serapme/article/details/46623225

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