/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: Marius Kruger
  • Date: 2010-07-10 21:28:56 UTC
  • mto: (5384.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5385.
  • Revision ID: marius.kruger@enerweb.co.za-20100710212856-uq4ji3go0u5se7hx
* Update documentation
* add NEWS

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 breezy.
 
10
This document describes the indexing facilities within bzrlib.
11
11
 
12
12
 
13
13
.. contents::
33
33
Overview
34
34
========
35
35
 
36
 
Breezy is moving to a write-once model for repository storage in order to
 
36
bzr 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 Breezy. The ``GraphIndexBuilder`` may be used to create one
 
101
graph index for bzr. 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.