Tokyo Cabinet is a library of routines for managing a database. The database is a simple data file containing records, each is a pair of a key and a value. Every key and value is serial bytes with variable length. Both binary data and character string can be used as a key and a value. There is neither concept of data tables nor data types. Records are organized in hash table, B+ tree, or fixed-length array.
Benchmark DBM: Benchmark PDF
Reference: http://1978th.net/tokyocabinet/
# Tokyo cabinet requires gzip and bzip
yum install gzip bzip2 bzip2-devel
#Tokyo Cabinet
wget http://voxel.dl.sourceforge.net/sourceforge/tokyocabinet/tokyocabinet-1.4.20.tar.gz
tar zxf tokyocabinet-1.4.20.tar.gz
cd tokyocabinet-1.4.20
./configure
make
make install
#Tokyo Tyrant
wget http://voxel.dl.sourceforge.net/sourceforge/tokyocabinet/tokyotyrant-1.1.26.tar.gz
tar zxf tokyotyrant-1.1.26.tar.gz
cd tokyotyrant-1.1.26
./configure
make
make install
References:
http://sameerparwani.com/posts/installing-tokyo-cabinet-and-tokyo-tyrant
http://pacific-design.com/tokyo-cabinet/
|