前言
在学习Glide
的时候, 我们会看到Glide的二级缓存
, 分别分为内存缓存
和磁盘缓存
, 而不论哪种缓存都使用到了Lru
算法, 本篇主要看一下Android里的LruCache
的实现
Lrucache实现原理
以v4包的LruCahce类源码为准, 我们先看下他的构造函数1
2
3
4
5
6
7public LruCache(int maxSize) {
if (maxSize <= 0) {
throw new IllegalArgumentException("maxSize <= 0");
}
this.maxSize = maxSize;
this.map = new LinkedHashMap<K, V>(0, 0.75f, true);
}
主要关注的是,LruCache内部通过LinkedHashMap
用来管理缓存列表, LinkedHashMap
是一个由数组+双向链表的数据结构实现的(我们以api26代码为准)1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23/**
* Constructs a new {@code LinkedHashMap} instance with the specified
* capacity, load factor and a flag specifying the ordering behavior.
*
* @param initialCapacity
* the initial capacity of this hash map.
* @param loadFactor
* the initial load factor.
* @param accessOrder
* {@code true} if the ordering should be done based on the last
* access (from least-recently accessed to most-recently
* accessed), and {@code false} if the ordering should be the
* order in which the entries were inserted.
* @throws IllegalArgumentException
* when the capacity is less than zero or the load factor is
* less or equal to zero.
*/
public LinkedHashMap(
int initialCapacity, float loadFactor, boolean accessOrder) {
super(initialCapacity, loadFactor);
init();
this.accessOrder = accessOrder;
}
它的构造函数中的accessOrder表示的是如果为true
,则为访问顺序; 否则, 为插入顺序排序, 我们可以看下accessOrder
的相关的处理逻辑, 当我们调用map.get(key)
和map.put()
的使用, 都会调用到afterNodeAccess()
方法, 该方法的作用就是将命中获取的引用对象, 放到链表的尾部, 就是说明, LinkedHashMap
本身每次访问读取的时候, 都会把读取到的值放在尾部, 那么越不常用的对象越会在链表的头部1
2
3
4
5
6
7
8public V get(Object key) {
Node<K,V> e;
if ((e = getNode(hash(key), key)) == null)
return null;
if (accessOrder)
afterNodeAccess(e);
return e.value;
}
这一段代码的处理就是判断目标节点的前后是否有对象, 摘除出目标节点, 将其放在last1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24void afterNodeAccess(Node<K,V> e) { // move node to last
LinkedHashMapEntry<K,V> last;
if (accessOrder && (last = tail) != e) {
LinkedHashMapEntry<K,V> p =
(LinkedHashMapEntry<K,V>)e, b = p.before, a = p.after;
p.after = null;
if (b == null)
head = a;
else
b.after = a;
if (a != null)
a.before = b;
else
last = b;
if (last == null)
head = p;
else {
p.before = last;
last.after = p;
}
tail = p;
++modCount;
}
}
我们可以由此了解到LruCache
类是通过LinkedHashMap
来做缓存的Lru
(Least Recently Used)管理, 我们在来看下LruCache
的几个主要的方法
get()
1 | public final V get(K key) { |
put()
1 | public final V put(K key, V value) { |
trimToSize()
不论是get
还是put
还是设置最大缓存大小resize
,我们都会调用到trimToSize
方法, 这个方法就是用来处理当超出缓存大小要求的时候, 删除最老的缓存, 直到缓存大小低于要求1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29public void trimToSize(int maxSize) {
while (true) {
K key;
V value;
synchronized (this) {
if (size < 0 || (map.isEmpty() && size != 0)) {
throw new IllegalStateException(getClass().getName()
+ ".sizeOf() is reporting inconsistent results!");
}
if (size <= maxSize || map.isEmpty()) {
break;
}
Map.Entry<K, V> toEvict = map.entrySet().iterator().next();
key = toEvict.getKey();
value = toEvict.getValue();
// LinkedHashMap构造函数中的accessOrder字段为true, 表示有读取排序
// 从最少使用顺序排序到最多排序
// 所以移除第一个value, 等于是移除最少使用的缓存
// map存储缓存, 直接移除第一个
map.remove(key);
size -= safeSizeOf(key, value);
evictionCount++;
}
entryRemoved(true, key, value, null);
}
}
总结
现在, 我们可以了解到, 真正辅助LruCache
实现它的算法的LinkedHashMap
, 它会以读取的顺序来做顺序排序, 最近读取的在队尾, 当我们调用LruCache.put
的时候, 将插入元素放在map
队尾, 然后通过调用trimToSize
判断是否超出缓存大小, 如果超出, 则移除map
的队首对象.当我们调用LruCache.get
的时候, 直接读取map对应key
的value
, 并由于LinkedHashMap
的内部机制, 对读取顺序重排序, 将对应的元素更新到队尾