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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
|
# Copyright (C) 2006 Canonical Ltd
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
"""A simple least-recently-used (LRU) cache."""
from collections import deque
import gc
class LRUCache(object):
"""A class which manages a cache of entries, removing unused ones."""
def __init__(self, max_cache=100, after_cleanup_size=None):
self._max_cache = max_cache
if after_cleanup_size is None:
self._after_cleanup_size = self._max_cache
else:
self._after_cleanup_size = min(after_cleanup_size, self._max_cache)
self._compact_queue_length = 4*self._max_cache
self._cache = {}
self._cleanup = {}
self._queue = deque() # Track when things are accessed
self._refcount = {} # number of entries in self._queue for each key
def __contains__(self, key):
return key in self._cache
def __getitem__(self, key):
val = self._cache[key]
self._record_access(key)
return val
def __len__(self):
return len(self._cache)
def add(self, key, value, cleanup=None):
"""Add a new value to the cache.
Also, if the entry is ever removed from the queue, call cleanup.
Passing it the key and value being removed.
:param key: The key to store it under
:param value: The object to store
:param cleanup: None or a function taking (key, value) to indicate
'value' sohuld be cleaned up.
"""
if key in self._cache:
self._remove(key)
self._cache[key] = value
self._cleanup[key] = cleanup
self._record_access(key)
if len(self._cache) > self._max_cache:
# Trigger the cleanup
self.cleanup()
def get(self, key, default=None):
if key in self._cache:
return self[key]
return default
def cleanup(self):
"""Clear the cache until it shrinks to the requested size.
This does not completely wipe the cache, just makes sure it is under
the after_cleanup_size.
"""
# Make sure the cache is shrunk to the correct size
while len(self._cache) > self._after_cleanup_size:
self._remove_lru()
def __setitem__(self, key, value):
"""Add a value to the cache, there will be no cleanup function."""
self.add(key, value, cleanup=None)
def _record_access(self, key):
"""Record that key was accessed."""
self._queue.append(key)
# Can't use setdefault because you can't += 1 the result
self._refcount[key] = self._refcount.get(key, 0) + 1
# If our access queue is too large, clean it up too
if len(self._queue) > self._compact_queue_length:
self._compact_queue()
def _compact_queue(self):
"""Compact the queue, leaving things in sorted last appended order."""
new_queue = deque()
for item in self._queue:
if self._refcount[item] == 1:
new_queue.append(item)
else:
self._refcount[item] -= 1
self._queue = new_queue
# All entries should be of the same size. There should be one entry in
# queue for each entry in cache, and all refcounts should == 1
assert (len(self._queue) == len(self._cache) ==
len(self._refcount) == sum(self._refcount.itervalues()))
def _remove(self, key):
"""Remove an entry, making sure to maintain the invariants."""
cleanup = self._cleanup.pop(key)
val = self._cache.pop(key)
if cleanup is not None:
cleanup(key, val)
return val
def _remove_lru(self):
"""Remove one entry from the lru, and handle consequences.
If there are no more references to the lru, then this entry should be
removed from the cache.
"""
key = self._queue.popleft()
self._refcount[key] -= 1
if not self._refcount[key]:
del self._refcount[key]
self._remove(key)
def clear(self):
"""Clear out all of the cache."""
# Clean up in LRU order
while self._cache:
self._remove_lru()
class LRUSizeCache(LRUCache):
"""An LRUCache that removes things based on the size of the values.
This differs in that it doesn't care how many actual items there are,
it just restricts the cache to be cleaned up after so much data is stored.
The values that are added must support len(value).
"""
def __init__(self, max_size=1024*1024, after_cleanup_size=None,
compute_size=None):
"""Create a new LRUSizeCache.
:param max_size: The max number of bytes to store before we start
clearing out entries.
:param after_cleanup_size: After cleaning up, shrink everything to this
size.
:param compute_size: A function to compute the size of the values. We
use a function here, so that you can pass 'len' if you are just
using simple strings, or a more complex function if you are using
something like a list of strings, or even a custom object.
The function should take the form "compute_size(value) => integer".
If not supplied, it defaults to 'len()'
"""
# This approximates that texts are > 0.5k in size. It only really
# effects when we clean up the queue, so we don't want it to be too
# large.
LRUCache.__init__(self, max_cache=int(max_size/512))
self._max_size = max_size
if after_cleanup_size is None:
self._after_cleanup_size = self._max_size
else:
self._after_cleanup_size = min(after_cleanup_size, self._max_size)
self._value_size = 0
self._compute_size = compute_size
if compute_size is None:
self._compute_size = len
def add(self, key, value, cleanup=None):
"""Add a new value to the cache.
Also, if the entry is ever removed from the queue, call cleanup.
Passing it the key and value being removed.
:param key: The key to store it under
:param value: The object to store
:param cleanup: None or a function taking (key, value) to indicate
'value' sohuld be cleaned up.
"""
if key in self._cache:
self._remove(key)
value_len = self._compute_size(value)
if value_len >= self._after_cleanup_size:
return
self._value_size += value_len
self._cache[key] = value
self._cleanup[key] = cleanup
self._record_access(key)
if self._value_size > self._max_size:
# Time to cleanup
self.cleanup()
def cleanup(self):
"""Clear the cache until it shrinks to the requested size.
This does not completely wipe the cache, just makes sure it is under
the after_cleanup_size.
"""
# Make sure the cache is shrunk to the correct size
while self._value_size > self._after_cleanup_size:
self._remove_lru()
def _remove(self, key):
"""Remove an entry, making sure to maintain the invariants."""
val = LRUCache._remove(self, key)
self._value_size -= self._compute_size(val)
|