LruCache缓存

时间:2024-04-03 13:07:02

LruCache通常用于实现内存缓存,采用的缓存算法是LRU(Least Recently Used)即近期最少使用算法,其核心思想是:当缓存满的时候,会优先淘汰那些近期最少使用的缓存对象。

1.LruCache是Android 3.1提供的缓存类,在使用LruCache的时候建议采用support-v4兼容包中提供的LruCache,这样才能兼容Android 2.2版本。

2.LruCache是一个泛型类,内部采用一个LinkedHashMap以强引用的方式存储外界的缓存对象,当缓存满的时候,会移除较早使用的缓存对象,然后再添加新的缓存对象。

          强引用:直接的对象引用。

          软引用:当一个对象只有软引用存在时,系统内存不足时此对象会被gc回收。

          弱引用:当一个对象只有弱引用存在时,此对象会随时被gc回收。

简单的使用:

    1.初始化

int maxMemory = (int) (Runtime.getRuntime().maxMemory()/);
int cacheMemory = maxMemory/;
mLruCache = new LruCache<String,Bitmap>(cacheMemory){
@Override
protected int sizeOf(String key, Bitmap value) {//sizeOf的作用是计算缓存对象的大小
return value.getRowBytes() * value.getHeight()/;
}
};

//sizeOf的作用是计算缓存对象的大小,单位要和总容量的单位一致,这里为KB(除了1024)

2.获取

mLruCache.get(key);

3.添加

mLruCache.put(key,bitmap);