Mercurial > public > mercurial-scm > hg-stable
annotate mercurial/i18n.py @ 1598:14d1f1868bf6
cleanup of revlog.group when repository is local
revlog.group cached every chunk from the revlog, the behaviour was
needed to minimize the roundtrip with old-http.
We now cache the revlog data ~4MB at a time.
The memory used server side when pulling goes down to 35Mo maximum
whereas without the patch more than 160Mo was used when cloning the linux kernel
repository.
The time used by cloning is higher mainly because of the check in revlog.revision.
before
110.25user 20.90system 2:52.00elapsed 76%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (0major+708707minor)pagefaults 0swaps
after
117.56user 18.86system 2:50.43elapsed 80%CPU (0avgtext+0avgdata 0maxresident)k
0inputs+0outputs (0major+748366minor)pagefaults 0swaps
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Tue, 27 Dec 2005 13:09:49 -0600 |
parents | fbf2b10011aa |
children | 345bac2bc4ec |
rev | line source |
---|---|
1400
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
1 """ |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
2 i18n.py - internationalization support for mercurial |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
3 |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
4 Copyright 2005 Matt Mackall <mpm@selenic.com> |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
5 |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
6 This software may be used and distributed according to the terms |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
7 of the GNU General Public License, incorporated herein by reference. |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
8 """ |
cf9a1233738a
i18n first part: make '_' available for files who need it
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
diff
changeset
|
9 |
1401
fbf2b10011aa
use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
1400
diff
changeset
|
10 # the import from gettext is _really_ slow |
fbf2b10011aa
use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
1400
diff
changeset
|
11 # for now we use a dummy function |
fbf2b10011aa
use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
1400
diff
changeset
|
12 gettext = lambda x: x |
fbf2b10011aa
use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
1400
diff
changeset
|
13 #import gettext |
fbf2b10011aa
use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
1400
diff
changeset
|
14 #t = gettext.translation('hg', '/usr/share/locale', fallback=1) |
fbf2b10011aa
use a dummy function for gettext
Benoit Boissinot <benoit.boissinot@ens-lyon.org
parents:
1400
diff
changeset
|
15 #gettext = t.gettext |