BSD 4_4 release
[unix-history] / usr / src / lib / libc / db / man / hash.3
CommitLineData
ad787160
C
1.\" Copyright (c) 1990, 1993
2.\" The Regents of the University of California. All rights reserved.
f52ca292 3.\"
ad787160
C
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\" notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\" notice, this list of conditions and the following disclaimer in the
11.\" documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\" must display the following acknowledgement:
14.\" This product includes software developed by the University of
15.\" California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\" may be used to endorse or promote products derived from this software
18.\" without specific prior written permission.
f52ca292 19.\"
ad787160
C
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
f52ca292 31.\"
ad787160
C
32.\" @(#)hash.3 8.1 (Berkeley) 7/19/93
33.\"
34.TH HASH 3 "July 19, 1993"
f52ca292
KB
35.UC 7
36.SH NAME
37hash \- hash database access method
38.SH SYNOPSIS
39.nf
40.ft B
41#include <sys/types.h>
42#include <db.h>
43.ft R
44.fi
45.SH DESCRIPTION
46The routine
47.IR dbopen
48is the library interface to database files.
49One of the supported file formats is hash files.
50The general description of the database access methods is in
51.IR dbopen (3),
52this manual page describes only the hash specific information.
53.PP
54The hash data structure is an extensible, dynamic hashing scheme.
55.PP
56The access method specific data structure provided to
57.I dbopen
58is defined in the <db.h> include file as follows:
59.sp
60typedef struct {
61.RS
62int bsize;
63.br
f52ca292
KB
64int ffactor;
65.br
ad787160 66int nelem;
f52ca292 67.br
ad787160 68int cachesize;
f52ca292 69.br
ad787160
C
70u_long (*hash)(const void *, size_t);
71.br
72int lorder;
f52ca292
KB
73.RE
74} HASHINFO;
75.PP
76The elements of this structure are as follows:
77.TP
78bsize
79.I Bsize
80defines the hash table bucket size, and is, by default, 256 bytes.
81It may be preferable to increase the page size for disk-resident tables
82and tables with large data items.
83.TP
84cachesize
85A suggested maximum size, in bytes, of the memory cache.
86This value is
87.B only
88advisory, and the access method will allocate more memory rather
89than fail.
90.TP
91ffactor
92.I Ffactor
93indicates a desired density within the hash table.
94It is an approximation of the number of keys allowed to accumulate in any
95one bucket, determining when the hash table grows or shrinks.
96The default value is 8.
97.TP
98hash
99.I Hash
100is a user defined hash function.
101Since no hash function performs equally well on all possible data, the
102user may find that the built-in hash function does poorly on a particular
103data set.
104User specified hash functions must take two arguments (a pointer to a byte
105string and a length) and return an u_long to be used as the hash value.
106.TP
107lorder
108The byte order for integers in the stored database metadata.
109The number should represent the order as an integer; for example,
110big endian order would be the number 4,321.
111If
112.I lorder
113is 0 (no order is specified) the current host order is used.
114If the file already exists, the specified value is ignored and the
115value specified when the tree was created is used.
116.TP
117nelem
118.I Nelem
119is an estimate of the final size of the hash table.
120If not set or set too low, hash tables will expand gracefully as keys
121are entered, although a slight performance degradation may be noticed.
122The default value is 1.
123.PP
124If the file already exists (and the O_TRUNC flag is not specified), the
125values specified for the parameters bsize, ffactor, lorder and nelem are
126ignored and the values specified when the tree was created are used.
127.PP
128If a hash function is specified,
129.I hash_open
130will attempt to determine if the hash function specified is the same as
131the one with which the database was created, and will fail if it is not.
132.PP
133Backward compatible interfaces to the routines described in
134.IR dbm (3),
135and
136.IR ndbm (3)
137are provided, however, these interfaces are not compatible with
138previous file formats.
139.SH "SEE ALSO"
140.IR btree (3),
141.IR dbopen (3),
142.IR mpool (3),
143.IR recno (3)
144.br
145.IR "Dynamic Hash Tables" ,
146Per-Ake Larson, Communications of the ACM, April 1988.
147.br
148.IR "A New Hash Package for UNIX" ,
149Margo Seltzer, USENIX Proceedings, Winter 1991.
150.SH BUGS
151Only big and little endian byte order is supported.