diff options
author | Philip Oakley <philipoakley@iee.email> | 2022-10-29 18:41:09 +0200 |
---|---|---|
committer | Taylor Blau <me@ttaylorr.com> | 2022-10-31 00:58:46 +0100 |
commit | fa8e8d5b31f2accfe956e9fd0f67ccb90586ed65 (patch) | |
tree | 19b54c77d71ae2c793547e2bc1c2dcb9946157ec /Documentation/technical/parallel-checkout.txt | |
parent | doc: use "commit-graph" hyphenation consistently (diff) | |
download | git-fa8e8d5b31f2accfe956e9fd0f67ccb90586ed65.tar.xz git-fa8e8d5b31f2accfe956e9fd0f67ccb90586ed65.zip |
doc: use 'object database' not ODB or abbreviation
The abbreviation 'ODB' is used in the technical documentation
sections for commit-graph and parallel-checkout, along with an
'odb' option in `git-pack-redundant`, without expansion.
Use 'object database' in full, in those entries. The text has not
been reflowed to keep the changes minimal.
While in the glossary for `object` terms, add the common`oid`
abbreviation to its entry.
Signed-off-by: Philip Oakley <philipoakley@iee.email>
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Diffstat (limited to '')
-rw-r--r-- | Documentation/technical/parallel-checkout.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/technical/parallel-checkout.txt b/Documentation/technical/parallel-checkout.txt index e790258a1a..47c9b6183c 100644 --- a/Documentation/technical/parallel-checkout.txt +++ b/Documentation/technical/parallel-checkout.txt @@ -56,7 +56,7 @@ Rejected Multi-Threaded Solution The most "straightforward" implementation would be to spread the set of to-be-updated cache entries across multiple threads. But due to the -thread-unsafe functions in the ODB code, we would have to use locks to +thread-unsafe functions in the object database code, we would have to use locks to coordinate the parallel operation. An early prototype of this solution showed that the multi-threaded checkout would bring performance improvements over the sequential code, but there was still too much lock |