comparison mercurial/repository.py @ 40795:e1c3a2e9df59

repo: add a `wcachevfs` to access the `.hg/wcache/` directory This wvfs will allow us to migrate various cache to the new `wcache` directory. Helping with cache issues with "share".
author Boris Feld <boris.feld@octobus.net>
date Thu, 15 Nov 2018 02:55:33 +0100
parents 968dd7e02ac5
children b2de94e59702
comparison
equal deleted inserted replaced
40794:d5622dfe4ba3 40795:e1c3a2e9df59
1433 """A VFS used to access the cache directory. 1433 """A VFS used to access the cache directory.
1434 1434
1435 Typically .hg/cache. 1435 Typically .hg/cache.
1436 """) 1436 """)
1437 1437
1438 wcachevfs = interfaceutil.Attribute(
1439 """A VFS used to access the cache directory dedicated to working copy
1440
1441 Typically .hg/wcache.
1442 """)
1443
1438 filteredrevcache = interfaceutil.Attribute( 1444 filteredrevcache = interfaceutil.Attribute(
1439 """Holds sets of revisions to be filtered.""") 1445 """Holds sets of revisions to be filtered.""")
1440 1446
1441 names = interfaceutil.Attribute( 1447 names = interfaceutil.Attribute(
1442 """A ``namespaces`` instance.""") 1448 """A ``namespaces`` instance.""")