1 .\" $NetBSD: btree.3,v 1.12 2010/03/22 19:30:53 joerg Exp $
3 .\" Copyright (c) 1990, 1993
4 .\" The Regents of the University of California. All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. Neither the name of the University nor the names of its contributors
15 .\" may be used to endorse or promote products derived from this software
16 .\" without specific prior written permission.
18 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
19 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
22 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .\" @(#)btree.3 8.4 (Berkeley) 8/18/94
37 .Nd btree database access method
44 is the library interface to database files.
45 One of the supported file formats is btree files.
46 The general description of the database access methods is in
48 this manual page describes only the btree specific information.
50 The btree data structure is a sorted, balanced tree structure storing
51 associated key/data pairs.
53 The btree access method specific data structure provided to
57 include file as follows:
65 int (*compare)(const DBT *key1, const DBT *key2);
66 size_t (*prefix)(const DBT *key1, const DBT *key2);
71 The elements of this structure are as follows:
72 .Bl -tag -width maxkeypagex
74 The flag value is specified by or'ing any of the following values:
75 .Bl -tag -width R_DUP -offset indent
77 Permit duplicate keys in the tree, i.e. permit insertion if the key to
78 be inserted already exists in the tree.
79 The default behavior, as described in
81 is to overwrite a matching key when inserting a new key or to fail if
87 flag is overridden by the
91 flag is specified, attempts to insert duplicate keys into the tree
94 If the database contains duplicate keys, the order of retrieval of
95 key/data pairs is undefined if the
97 routine is used, however,
99 routine calls with the
101 flag set will always return the logical
103 of any group of duplicate keys.
106 A suggested maximum size (in bytes) of the memory cache.
109 advisory, and the access method will allocate more memory rather than
111 Since every search examines the root page of the tree, caching the
112 most recently used pages substantially improves access time.
113 In addition, physical writes are delayed as long as possible, so a
114 moderate cache can reduce the number of I/O operations significantly.
115 Obviously, using a cache increases (but only increases) the likelihood
116 of corruption or lost data if the system crashes while a tree is being
120 is 0 (no size is specified) a default cache is used.
122 The maximum number of keys which will be stored on any single page.
123 Not currently implemented.
124 .\" The maximum number of keys which will be stored on any single page.
125 .\" Because of the way the btree data structure works,
127 .\" must always be greater than or equal to 2.
130 .\" is 0 (no maximum number of keys is specified) the page fill factor is
131 .\" made as large as possible (which is almost invariably what is wanted).
133 The minimum number of keys which will be stored on any single page.
134 This value is used to determine which keys will be stored on overflow
135 pages, i.e., if a key or data item is longer than the pagesize divided
138 value, it will be stored on overflow pages instead of in the page
142 is 0 (no minimum number of keys is specified) a value of 2 is used.
144 Page size is the size (in bytes) of the pages used for nodes in the
146 The minimum page size is 512 bytes and the maximum page size is 64K.
149 is 0 (no page size is specified) a page size is chosen based on the
150 underlying file system I/O block size.
152 Compare is the key comparison function.
153 It must return an integer less than, equal to, or greater than zero if
154 the first key argument is considered to be respectively less than,
155 equal to, or greater than the second key argument.
156 The same comparison function must be used on a given tree every time
162 (no comparison function is specified), the keys are compared
163 lexically, with shorter keys considered less than longer keys.
165 Prefix is the prefix comparison function.
166 If specified, this routine must return the number of bytes of the
167 second key argument which are necessary to determine that it is
168 greater than the first key argument.
169 If the keys are equal, the key length should be returned.
170 Note, the usefulness of this routine is very data dependent, but, in
171 some data sets can produce significantly reduced tree sizes and search
177 (no prefix function is specified),
179 no comparison function is specified, a default lexical comparison
185 and a comparison routine is specified, no prefix comparison is done.
187 The byte order for integers in the stored database metadata.
188 The number should represent the order as an integer; for example,
189 big endian order would be the number 4,321.
192 is 0 (no order is specified) the current host order is used.
195 If the file already exists (and the
197 flag is not specified), the values specified for the parameters flags,
198 lorder and psize are ignored in favor of the values used when the tree
201 Forward sequential scans of a tree are from the least key to the
204 Space freed up by deleting key/data pairs from the tree is never
205 reclaimed, although it is normally made available for reuse.
206 This means that the btree storage structure is grow-only.
207 The only solutions are to avoid excessive deletions, or to create a
208 fresh tree periodically from a scan of an existing one.
210 Searches, insertions, and deletions in a btree will all complete in
211 O lg base N where base is the average fill factor.
212 Often, inserting ordered data into btrees results in a low fill
214 This implementation has been modified to make ordered insertion the
215 best case, resulting in a much better than normal page fill factor.
219 access method routines may fail and set
221 for any of the errors specified for the library routine
230 .%T "The Ubiquitous B-tree"
232 .%J "ACM Comput. Surv."
242 .%J "ACM Transactions on Database Systems"
249 .%B "The Art of Computer Programming Vol. 3: Sorting and Searching"
255 Only big and little endian byte order is supported.