Questions tagged [tokyo-cabinet]

Tokyo Cabinet is a modern key-value based (NoSQL) database system.

From: http://fallabs.com/tokyocabinet/

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.

Tokyo Cabinet is developed as the successor of GDBM and QDBM on the following purposes. They are achieved and Tokyo Cabinet replaces conventional DBM products.

improves space efficiency : smaller size of database file. improves time efficiency : faster processing speed. improves parallelism : higher performance in multi-thread environment. improves usability : simplified API. improves robustness : database file is not corrupted even under catastrophic situation. supports 64-bit architecture : enormous memory space and database file are available. Tokyo Cabinet is written in the C language, and provided as API of C, Perl, Ruby, Java, and Lua. Tokyo Cabinet is available on platforms which have API conforming to C99 and POSIX. Tokyo Cabinet is a free software licensed under the GNU Lesser General Public License.

78 questions
0
votes
1 answer

tokyo cabinet perl api libtokyocabinet.dylib, file is not of required architecture

Helle there, compiling the perl api for tokyo cabinet is diving me crazy ! i've always this error message : ld: warning: in /usr/local/lib/libtokyocabinet.dylib, file is not of required architecture i've tried de rebuild tokyop cabinet en…
Houssem
  • 169
  • 1
  • 1
  • 8
0
votes
0 answers

Tokyocabinet: loop to traverse of the BTree file

I traverse the BTree by cursor (example from documentation ) See code bellow: kkey_t* p2; // the type kkey_t is some struct int counter=0; BDBCUR *cur = tcbdbcurnew(bdb); tcbdbcurfirst(cur); while((p2 = (kkey_t*)tcbdbcurkey(cur, &len )) !=…
Alexandre Kalendarev
  • 681
  • 2
  • 10
  • 24
-1
votes
4 answers

good combination of a c++ toolkit/library, cross platform db (not necessarily sql)

what do you suggest as a cross platform "almost all encompassing" abstraction toolkit/library, not necessarily gui oriented? the project should at some point include an extremely minimal web server and a "db" of some sort (basically to have…
user120747
  • 169
  • 1
  • 8
1 2 3 4 5
6