diff options
author | Jeff King <peff@peff.net> | 2013-04-09 02:52:56 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-04-13 21:50:54 -0700 |
commit | 96c4f4a370591b4796628abe18f27f0133b21954 (patch) | |
tree | 4964fb0b626a4cbc0c451d99b9cf1f862d225a7f /t/t7607-merge-overwrite.sh | |
parent | Merge branch 'rr/test-3200-style' into maint (diff) | |
download | tgif-96c4f4a370591b4796628abe18f27f0133b21954.tar.xz |
commit: allow associating auxiliary info on-demand
The "indegree" field in the commit object is only used while sorting
a list of commits in topological order, and wasting memory otherwise.
We would prefer to shrink the size of individual commit objects,
which we may have to hold thousands of in-core. We could eject
"indegree" field out from the commit object and represent it as a
dynamic table based on the decoration infrastructure, but the
decoration is meant for sparse annotation and is not a good match.
Instead, let's try a different approach.
- Assign an integer (commit->index) to each commit we keep in-core
(reuse the space of "indegree" field for it);
- When running the topological sort, allocate an array of integers
in bulk (called "slab"), use the commit->index as an index into
this array, and store the "indegree" information there.
This does _not_ reduce the memory footprint of a commit object, but
the commit->index can be used as the index to dynamically associate
commits with other kinds of information as needed.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7607-merge-overwrite.sh')
0 files changed, 0 insertions, 0 deletions