aboutsummaryrefslogtreecommitdiff
path: root/system/tinycdb/README
diff options
context:
space:
mode:
authorDejan Strbac <me@dejanstrbac.com>2019-06-09 04:59:27 +0700
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2019-06-09 05:32:07 +0700
commit693231e406ce8af16a613ecdc864027d0d671f82 (patch)
tree7bfe9d4665a8db7f18b6858df534873aede0ae56 /system/tinycdb/README
parent8a9a4807b2880d0e52edaf6fece0e2ea02baf770 (diff)
system/tinycdb: Added (Constant Database).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/tinycdb/README')
-rw-r--r--system/tinycdb/README16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/tinycdb/README b/system/tinycdb/README
new file mode 100644
index 0000000000000..3c3724c74ca46
--- /dev/null
+++ b/system/tinycdb/README
@@ -0,0 +1,16 @@
+TinyCDB is a very fast and simple package for creating and reading constant
+data bases, a data structure introduced by Dan J. Bernstein in his cdb
+package. It may be used to speed up searches in a sequence of (key,value)
+pairs with very big number of records. Example usage is indexing a big list
+of users - where a search will require linear reading of a large /etc/passwd
+file, and for many other tasks. It's usage/API is similar to ones found in
+BerkeleyDB, gdbm and traditional *nix dbm/ndbm libraries, and is compatible
+in great extent to cdb-0.75 package by Dan Bernstein.
+
+CDB is a constant database, that is, it cannot be updated at a runtime, only
+rebuilt. Rebuilding is atomic operation and is very fast - much faster than of
+many other similar packages. Once created, CDB may be queried, and a query
+takes very little time to complete.
+
+The SlackBuild will install both the binary cdb as well the system library for
+use in other applications such as Postfix.