/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to doc/developers/indices.txt

  • Committer: Jelmer Vernooij
  • Date: 2018-07-08 14:45:27 UTC
  • mto: This revision was merged to the branch mainline in revision 7036.
  • Revision ID: jelmer@jelmer.uk-20180708144527-codhlvdcdg9y0nji
Fix a bunch of merge tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
 
8
8
:Date: 2007-07-14
9
9
 
10
 
This document describes the indexing facilities within bzrlib.
 
10
This document describes the indexing facilities within breezy.
11
11
 
12
12
 
13
13
.. contents::
33
33
Overview
34
34
========
35
35
 
36
 
bzr is moving to a write-once model for repository storage in order to
 
36
Breezy is moving to a write-once model for repository storage in order to
37
37
achieve lock-free repositories eventually. In order to support this, we are
38
38
making our new index classes **immutable**. That is, one creates a new
39
39
index in a single operation, and after that it is read only. To combine
98
98
 
99
99
``GraphIndex`` supports graph based lookups. While currently unoptimised
100
100
for reading, the index is quite space efficient at storing the revision
101
 
graph index for bzr. The ``GraphIndexBuilder`` may be used to create one
 
101
graph index for Breezy. The ``GraphIndexBuilder`` may be used to create one
102
102
of these indices by calling ``add_node`` until all nodes are added, then
103
103
``finish`` to obtain a file stream containing the index data. Multiple
104
104
indices may be queried using the ``CombinedGraphIndex`` class.