~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_groupcompress.py

  • Committer: John Arbash Meinel
  • Date: 2010-08-05 16:27:35 UTC
  • mto: This revision was merged to the branch mainline in revision 5374.
  • Revision ID: john@arbash-meinel.com-20100805162735-172opvx34sr5gpbl
Find a case where we are wasting a bit of memory.

Specifically the 'build_details' tuple contains a lot of wasted references,
and we hold on to one of these for each record we are fetching.
And for something like 'bzr pack', that is all keys.

For just loading all text build details on my bzr+ repository, With:
locations = b.repository.texts._index.get_build_details(b.repository.texts.keys())
This drops the memory consumption from:
WorkingSize   77604KiB
 to
WorkingSize   64640KiB

Or around 10.6MB. I worked it out to a savings of about 80 bytes/record
on data that can have hundreds of thousands of records (in 32-bit).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1066
1066
        # consumption
1067
1067
        self.add_key_to_manager(('key4',), locations, block, manager)
1068
1068
        self.assertTrue(manager.check_is_well_utilized())
 
1069
 
 
1070
 
 
1071
class Test_GCBuildDetails(tests.TestCase):
 
1072
 
 
1073
    def test_acts_like_tuple(self):
 
1074
        # _GCBuildDetails inlines some of the data that used to be spread out
 
1075
        # across a bunch of tuples
 
1076
        bd = groupcompress._GCBuildDetails((('parent1',), ('parent2',)),
 
1077
            ('INDEX', 10, 20, 0, 5))
 
1078
        self.assertEqual(4, len(bd))
 
1079
        self.assertEqual(('INDEX', 10, 20, 0, 5), bd[0])
 
1080
        self.assertEqual(None, bd[1]) # Compression Parent is always None
 
1081
        self.assertEqual((('parent1',), ('parent2',)), bd[2])
 
1082
        self.assertEqual(('group', None), bd[3]) # Record details
 
1083
 
 
1084
    def test__repr__(self):
 
1085
        bd = groupcompress._GCBuildDetails((('parent1',), ('parent2',)),
 
1086
            ('INDEX', 10, 20, 0, 5))
 
1087
        self.assertEqual("_GCBuildDetails(('INDEX', 10, 20, 0, 5),"
 
1088
                         " (('parent1',), ('parent2',)))",
 
1089
                         repr(bd))
 
1090