~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remotebranch.py

  • Committer: Robert Collins
  • Date: 2005-09-29 02:59:47 UTC
  • Revision ID: robertc@robertcollins.net-20050929025947-b7e31586863f25d7
dont try to cache the now absent inventory_store and text_store for remotebranches. TODO: cache or otherwise address performance of the text weaves and inventory weaves

Show diffs side-by-side

added added

removed removed

Lines of Context:
139
139
    def setup_caching(self, cache_root):
140
140
        """Set up cached stores located under cache_root"""
141
141
        from bzrlib.meta_store import CachedStore
142
 
        for store_name in ('inventory_store', 'text_store', 'revision_store'):
 
142
        for store_name in ('revision_store',):
143
143
            if not isinstance(getattr(self, store_name), CachedStore):
144
144
                cache_path = os.path.join(cache_root, store_name)
145
145
                os.mkdir(cache_path)