Mercurial > hg
view tests/test-debugextensions.t @ 51108:0250e45040f1
revlog: add a small cache of unfiltered chunk
This can provides a massive boost to the reading of multiple revision and the
computation of a valid delta chain.
This greatly help operation like `hg log --patch`, delta computation (helping
pull/unbundle), linkrev adjustment (helping copy tracing).
A first round of benchmark for `hg log --patch --limit 1000` shows improvement
in the 10-20% range on "small" repository like pypy or mercurial and large
improvements (about 33%) for more complex ones like netbeans and mozilla's.
These speeds up are consistent with the improvement to `hg pull` (from a server
sending poor deltas) I saw benchmarking this last year. Further benchmark will
be run during the freeze.
I added some configuration in the experimental space to be able to further test
the effect of various tuning for now. This feature should fit well in the
"usage/resource profile" configuration that we should land next cycle.
When it does not provides a benefit the overhead of the cache seem to be around
2%, a small price for the big improvement. In addition I believe we could shave
most of this overhead with a more efficent lru implementation.
author | Pierre-Yves David <pierre-yves.david@octobus.net> |
---|---|
date | Fri, 27 Oct 2023 08:54:41 +0200 |
parents | 4836705ab9ba |
children |
line wrap: on
line source
#if no-extraextensions $ hg debugextensions #endif $ debugpath=`pwd`/extwithoutinfos.py $ cat > extwithoutinfos.py <<EOF > EOF $ cat > extwithinfos.py <<EOF > testedwith = b'3.0 3.1 3.2.1' > buglink = b'https://example.org/bts' > EOF $ cat >> $HGRCPATH <<EOF > [extensions] > histedit= > patchbomb= > rebase= > mq= > ext1 = $debugpath > ext2 = `pwd`/extwithinfos.py > EOF $ for extension in $HGTESTEXTRAEXTENSIONS; do > echo "$extension=!" >> $HGRCPATH > done $ hg debugextensions ext1 (untested!) ext2 (3.2.1!) histedit mq patchbomb rebase $ hg debugextensions -v ext1 location: */extwithoutinfos.py* (glob) bundled: no ext2 location: */extwithinfos.py* (glob) bundled: no tested with: 3.0 3.1 3.2.1 bug reporting: https://example.org/bts histedit location: */hgext/histedit.py* (glob) (no-pyoxidizer-in-memory !) location: */release/app/hg* (glob) (pyoxidizer-in-memory !) bundled: yes mq location: */hgext/mq.py* (glob) (no-pyoxidizer-in-memory !) location: */release/app/hg* (glob) (pyoxidizer-in-memory !) bundled: yes patchbomb location: */hgext/patchbomb.py* (glob) (no-pyoxidizer-in-memory !) location: */release/app/hg* (glob) (pyoxidizer-in-memory !) bundled: yes rebase location: */hgext/rebase.py* (glob) (no-pyoxidizer-in-memory !) location: */release/app/hg* (glob) (pyoxidizer-in-memory !) bundled: yes $ hg debugextensions -Tjson | sed 's|\\\\|/|g' [ { "buglink": "", "bundled": false, "name": "ext1", "source": "*/extwithoutinfos.py*", (glob) "testedwith": [] }, { "buglink": "https://example.org/bts", "bundled": false, "name": "ext2", "source": "*/extwithinfos.py*", (glob) "testedwith": ["3.0", "3.1", "3.2.1"] }, { "buglink": "", "bundled": true, "name": "histedit", "source": "*/hgext/histedit.py*", (glob) (no-pyoxidizer-in-memory !) "source": */release/app/hg* (glob) (pyoxidizer-in-memory !) "testedwith": [] }, { "buglink": "", "bundled": true, "name": "mq", "source": "*/hgext/mq.py*", (glob) (no-pyoxidizer-in-memory !) "source": */release/app/hg* (glob) (pyoxidizer-in-memory !) "testedwith": [] }, { "buglink": "", "bundled": true, "name": "patchbomb", "source": "*/hgext/patchbomb.py*", (glob) (no-pyoxidizer-in-memory !) "source": */release/app/hg* (glob) (pyoxidizer-in-memory !) "testedwith": [] }, { "buglink": "", "bundled": true, "name": "rebase", "source": "*/hgext/rebase.py*", (glob) (no-pyoxidizer-in-memory !) "source": */release/app/hg* (glob) (pyoxidizer-in-memory !) "testedwith": [] } ] $ hg debugextensions -T '{ifcontains("3.1", testedwith, "{name}\n")}' ext2 $ hg debugextensions \ > -T '{ifcontains("3.2", testedwith, "no substring match: {name}\n")}'