diff options
author | B. Watson <yalhcru@gmail.com> | 2022-03-14 12:56:07 -0400 |
---|---|---|
committer | B. Watson <yalhcru@gmail.com> | 2022-03-17 12:38:13 -0400 |
commit | 7ce40485b7caf0e540969b3076b7266781472e64 (patch) | |
tree | 522747c72230a6c026b43c3d6844f9bfb8c75e57 /system/tinycdb | |
parent | 7f804d9129287a4d8a6fe1202a2070c35978fd44 (diff) |
system/tinycdb: Wrap README at 72 columns.
Signed-off-by: B. Watson <yalhcru@gmail.com>
Diffstat (limited to 'system/tinycdb')
-rw-r--r-- | system/tinycdb/README | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/system/tinycdb/README b/system/tinycdb/README index 3c3724c74ca46..410c9385f7f90 100644 --- a/system/tinycdb/README +++ b/system/tinycdb/README @@ -1,16 +1,17 @@ -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. +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. +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. +The SlackBuild will install both the binary cdb as well the system +library for use in other applications such as Postfix. |