# HG changeset patch # User Adrian Buehlmann # Date 2012-09-17 06:58:35 # Node ID 64c6a0d4d4bd30898ee12c87b6afcd8b1d4d969b # Parent 9a5c2ecd1158881b3e015e5d23e3ff36cfe47b48 store: optimize fncache._write by direncoding the contents in one go For a netbeans clone on Windows 7 x64: Before: $ hg perffncachewrite ! wall 0.210000 comb 0.218401 user 0.202801 sys 0.015600 (best of 47) After: $ hg perffncachewrite ! wall 0.104000 comb 0.109201 user 0.078000 sys 0.031200 (best of 95) diff --git a/mercurial/store.py b/mercurial/store.py --- a/mercurial/store.py +++ b/mercurial/store.py @@ -348,7 +348,7 @@ class fncache(object): def _write(self, files, atomictemp): fp = self.opener('fncache', mode='wb', atomictemp=atomictemp) if files: - fp.write('\n'.join(map(encodedir, files)) + '\n') + fp.write(encodedir('\n'.join(files) + '\n')) fp.close() self._dirty = False