Topic: gdbm[ Functions and data structures ] [ example code ] [ links ] | |
gdbm is a GNU implementation of the standard Unix dbm library, originally developed at Berkeley.
(Well, what wasn't?) You may have heard of dbm if you've worked at all with sendmail; sendmail
uses dbm for many of its lookup tables.
gdbm's features may be summarized as follows:
Thus gdbm is an excellent lightweight alternative to a full relational database. If all you need to do is to store arbitrary data to be looked up with keys, and do it fast, then gdbm is your solution. However, there are a few caveats.
| |
| |
| |
| |
|