wok view gdbm/description.txt @ rev 24986

Up nettle 3.7.3 again, need glib-networking rebuild to no break midori
author Stanislas Leduc <shann@slitaz.org>
date Wed May 11 08:28:28 2022 -0400 (2022-05-11)
parents
children
line source
1 GNU dbm (or GDBM, for short) is a library of database functions that
2 use extensible hashing and work similar to the standard UNIX dbm.
3 These routines are provided to a programmer needing to create and
4 manipulate a hashed database.
6 The basic use of GDBM is to store key and data pairs in a data file.
7 Each key must be unique and each key is paired with only one data item.
9 The library provides primitives for storing key and data pairs,
10 searching and retrieving the data by its key and deleting a key along
11 with its data.
12 It also support sequential iteration over all key and data pairs in
13 a database.
15 For compatibility with programs using old UNIX dbm function, the package
16 also provides traditional dbm and ndbm interfaces