summaryrefslogtreecommitdiff
path: root/databases/tinycdb
AgeCommit message (Collapse)AuthorFilesLines
2006-01-19Don't forcibly override CFLAGS and other values pkgsrc might pass toschmonz2-5/+20
make(1). Idea from Andrzej Kukula in private mail.
2006-01-19Unquote a SUBST_MESSAGE to placate pkglint.schmonz1-2/+2
2006-01-19Add buildlink3.mk. From Andrzej Kukula in private mail, with minor changesschmonz1-0/+19
by me.
2006-01-07Initial import of tinycdb-0.75, a very fast and simple package forschmonz5-0/+74
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.