1 # $NetBSD: README,v 1.5 1999/02/16 17:59:18 kleink Exp $
2 # @(#)README 8.1 (Berkeley) 6/4/93
4 This package implements a superset of the hsearch and dbm/ndbm libraries.
7 All test programs which need key/data pairs expect them entered
8 with key and data on separate lines
13 fill factor (ffactor), and
14 initial number of elements (nelem).
15 Creates a hash table named hashtest containing the
16 keys/data pairs entered from standard in.
20 fill factor (ffactor),
21 initial number of elements (nelem)
22 bytes of cache (ncached), and
23 file from which to read data (fname)
24 Creates a table from the key/data pairs on standard in and
25 then does a read of each key/data in fname
28 bucketsize (bsize), and
29 fill factor (ffactor).
30 file from which to read data (fname)
31 Reads each key/data pair from fname and deletes the
32 key from the hash table hashtest
34 Reads the key/data pairs in the file hashtest and writes them
38 butes of cache (ncached).
39 Reads key/data pairs from standard in and looks them up
42 Reads key/data pairs from standard in, looks them up
43 in the file hashtest, and verifies that the data is
48 The man page ../man/db.3 explains the interface to the hashing system.
49 The file hash.ps is a postscript copy of a paper explaining
50 the history, implementation, and performance of the hash package.
52 "bugs" or idiosyncracies
54 If you have a lot of overflows, it is possible to run out of overflow
55 pages. Currently, this will cause a message to be printed on stderr.
56 Eventually, this will be indicated by a return error code.
58 If you are using the ndbm interface and exit without flushing or closing the
59 file, you may lose updates since the package buffers all writes. Also,
60 the db interface only creates a single database file. To avoid overwriting
61 the user's original file, the suffix ".db" is appended to the file name
62 passed to dbm_open. Additionally, if your code "knows" about the historic
63 .dir and .pag files, it will break.
65 There is a fundamental difference between this package and the old hsearch.
66 Hsearch requires the user to maintain the keys and data in the application's
67 allocated memory while hash takes care of all storage management. The down
68 side is that the byte strings passed in the ENTRY structure must be null
69 terminated (both the keys and the data).