summaryrefslogtreecommitdiff
path: root/databases/db4/DESCR
diff options
context:
space:
mode:
authoruebayasi <uebayasi@pkgsrc.org>2002-03-30 05:35:57 +0000
committeruebayasi <uebayasi@pkgsrc.org>2002-03-30 05:35:57 +0000
commit5a667bb6874a0dd1bbfe73fa291f16513d41203b (patch)
tree2284301ae55393b1d7524dc69572a55a8a1ca26e /databases/db4/DESCR
parent70be18a91812986014de92aabb2a9b1eed7664f7 (diff)
downloadpkgsrc-5a667bb6874a0dd1bbfe73fa291f16513d41203b.tar.gz
Initial import of Sleepycat db4 provided by Alex Newman <dolemite@wuli.nu>
in pkg/16075. From DESCR: 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.
Diffstat (limited to 'databases/db4/DESCR')
-rw-r--r--databases/db4/DESCR23
1 files changed, 23 insertions, 0 deletions
diff --git a/databases/db4/DESCR b/databases/db4/DESCR
new file mode 100644
index 00000000000..262096316e7
--- /dev/null
+++ b/databases/db4/DESCR
@@ -0,0 +1,23 @@
+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.