Berkeley DB is an embeddable database system that supports keyed access to
authoradam <adam>
Wed, 2 Jun 2010 12:08:53 +0000 (12:08 +0000)
committeradam <adam>
Wed, 2 Jun 2010 12:08:53 +0000 (12:08 +0000)
commitf01dd56d32ce34f9f820b6d14a0db685ca32dc90
treeeed3b1e9b33e03dafc9f31475bd88ef43b8ebbc9
parentf58cf37312aa885b3d44df36f7b087157d80fd4f
Berkeley DB is an embeddable database system that supports keyed access to
data. The software is distributed in source code form, and developers can
compile and link the source code into a single library for inclusion
directly in their applications.

Developers may choose to store data in any of several different storage
structures to satisfy the requirements of a particular application. In
database terminology, these storage structures and the code that operates on
them are called access methods. The library includes support for the
following access methods:

   * B+tree: Stores keys in sorted order, using either a programmer-supplied
     ordering function or a default function that does lexicographical
     ordering of keys. Applications may perform equality or range searches.
   * Hashing: Stores records in a hash table for fast searches based on
     strict equality. Extended Linear Hashing modifies the hash function
     used by the table as new records are inserted, in order to keep buckets
     underfull in the steady state.
   * Fixed and Variable-Length Records: Stores fixed- or variable-length
     records in sequential order. Record numbers may be immutable or
     mutable, i.e., permitting new records to be inserted between existing
     records or requiring that new records be added only at the end of the
     database.
databases/db5/DESCR [new file with mode: 0644]
databases/db5/Makefile [new file with mode: 0644]
databases/db5/PLIST [new file with mode: 0644]
databases/db5/buildlink3.mk [new file with mode: 0644]
databases/db5/distinfo [new file with mode: 0644]
databases/db5/hacks.mk [new file with mode: 0644]
databases/db5/patches/patch-aa [new file with mode: 0644]
databases/db5/patches/patch-ab [new file with mode: 0644]
databases/db5/patches/patch-ac [new file with mode: 0644]