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