15
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21
27
"""A store that caches data locally, to avoid repeated downloads.
22
28
The precacache method should be used to avoid server round-trips for
25
31
def __init__(self, store, cache_dir):
26
32
self.source_store = store
29
35
def __getitem__(self, id):
30
36
mutter("Cache add %s" % id)