Tagged Questions

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

learn more… | top users | synonyms

24
votes
6answers
8k views

BerkeleyDB vs. Tokyo Cabinet

I'm looking for general experiences from people who have used both, particularly on how the two compare on handling large numbers of records, transaction/concurrency/deadlock handling, and juicy ...
12
votes
4answers
2k views

How to bundle a native library and a JNI library inside a JAR?

The library in question is Tokyo Cabinet. I want is to have the native library, JNI library, and all Java API classes in one JAR file to avoid redistribution headaches. There seems to be an attempt ...
12
votes
5answers
4k views

Python Table engine binding for Tokyo Cabinet

I am looking for python bindings for Table engine of Tokyo cabinet. I tried Pytc but can only find Hash and B-tree engine support. Is there any other bindings available?
9
votes
1answer
365 views

What is “physical synchronization” of Kyoto Cabinet Database?

The function begin_transaction takes a boolean argument that indicates what type of synchronization should be done; physical when true or logical when false. What does it mean when it refers to ...
7
votes
8answers
772 views

(How can/What should) I implement a database that scales to the upper tens of thousands requests/second?

By Upper tens of thousands requests/second I want to see 60,000 -> +90,000 requests/second. My Setup consists of the following: user ---> web app --> message queue --> parser --> database? I should ...
6
votes
2answers
605 views

Tokyo Cabinet & .Net

Is it possible to use Tokyo Cabinet with any of the .Net Languages, preferably VB10? How about Tokyo Tyrant? Preferably without going through LUA/Ruby or other wrappers.. If there's no easy way in ...
6
votes
5answers
2k views

Why does tokyo tyrant slow down exponentially even after adjusting bnum?

Has anyone successfully used Tokyo Cabinet / Tokyo Tyrant with large datasets? I am trying to upload a subgraph of the Wikipedia datasource. After hitting about 30 million records, I get exponential ...
5
votes
6answers
213 views

Best C language key/value database around for massive amounts of entries

I am trying to create a key/value database with 300,000,000 key/value pairs of 8 bytes each (both for the key and the value). The requirement is to have a very fast key/value mechanism which can query ...
5
votes
3answers
411 views

Can I expect a significant performance boost by moving a large key value store from MySQL to a NoSQL DB?

I'm developing a database that holds large scientific datasets. Typical usage scenario is that on the order of 5GB of new data will be written to the database every day; 5GB will also be deleted each ...
5
votes
3answers
1k views

Tokyo Cabinet vs SQLite3 on iPhone

Has anyone used Tokyo Cabinet on the iPhone? I'm interested to see if there are any real world performance differences between it and SQLite3. Also, SQLite 3 has the expressive power of SQL, does ...
4
votes
3answers
649 views

Picking a database technology

We're setting out to build an online platform (API, Servers, Data, Wahoo!). For context, imagine that we need to build something like twitter, but with the comments (tweets) organized around a live ...
4
votes
3answers
2k views

Tokyo cabinet - Slower inserts after hitting 1million

I am evaluating tokyo cabinet Table engine. The insert rate slows down considerable after hitting 1 million records. Batch size is 100,000 and is done within transaction. I tried setting the xmsiz but ...
3
votes
1answer
215 views

What is the maximum size that the Tokyo Cabinet works well?

I read on an article called "Hands-on Cassandra" that Tokyo Cabinet is not good for big data. Why? How many bytes TC needs to store before start to work bad? Is is possible to determine a approximated ...
3
votes
3answers
990 views

Object-oriented C++ API for Tokyo Cabinet?

Is there a C++ wrapper for the Tokyo Cabinet API? Obviously I can use the basic C API from C++, but I'd much rather use something that abstracted the raw functions and structures into classes. I'm ...
3
votes
3answers
449 views

How does Tokyo Cabinet handle large integers?

I have implemented a queue on top of TC (Tokyo Tyrant to be specific). I am using memcache compatible function increment to keep track of queue head and tail. I just want to know what is the limit for ...
3
votes
2answers
1k views

Tokyo Cabinet and SQLite compatible interfaces?

I was wondering if anyone has seen a library that abstracts away SQLite and Tokyo-Cabinet to the same API. Basically I'm looking for something that will allow me to test and dev with SQLite, and later ...
2
votes
1answer
56 views

Why can't I create a fixed length tokyo cabinet database larger than 1.8GB?

When I attempt to create a database using tcfdbtune with a parameter limsiz of 1900000000 (1.9GB) and then try to run a tcfdbopen, it fails with a "memory error", and I have no idea why. When I ...
2
votes
0answers
17 views

Why tchdb file size keep going bigger after tchdbout some items?

I use tchdb in a server to store some data. And use another program to clean some old and useless data. But after executing this cleaner the file size didn't change and keep going bigger while the ...
2
votes
0answers
293 views

Range query on kyoto cabinet using Java API

I am interested in using kyotocabinet key-value store and I want to preform a range query preferably with a bulk interface (returning byte array). I checked kyoto cabinet's Java API and I couldn't ...
2
votes
1answer
98 views

What does bnum exactly mean in tokyo tyrant

What does bnum exactly mean in tokyo tyrant, can someone explain it with an example? If the size of the tch data file exceeds 2GB, what should I do?
2
votes
3answers
1k views

Java: object to byte[] and byte[] to object converter (for Tokyo Cabinet)

I need to convert objects to a byte[] to be stored in the Tokyo Cabinet key-value store. I also need to unbyte the byte[] to an Object when reading from the key-value store. Are there any packages ...
2
votes
1answer
637 views

tokyo cabinet & tyrant tutorial

Can somebody refer a good tutorial on tokyo cabinet and tokyo tyrant
2
votes
2answers
721 views

Ruby Rack: startup and teardown operations (Tokyo Cabinet connection)

I have built a pretty simple REST service in Sinatra, on Rack. It's backed by 3 Tokyo Cabinet/Table datastores, which have connections that need to be opened and closed. I have two model classes ...
2
votes
2answers
66 views

What is the best way to determine the count of records that will be returned by a query with rufus-tokyo?

I would like to determine the number of records that a query on a Tokyo Cabinet Table will return before I run the query. I am using the rufus-tokyo Ruby gem as my interface. What is the best way to ...
2
votes
1answer
681 views

SimpleDB vs Tokyo Cabinet

Has anybody compared SimpleDB and Tokyo Cabinet for performance and scalability? I'm coding my project against SimpleDB at the moment and considering benchmarking TC, be nice if somebody had already ...
2
votes
1answer
210 views

What are some techniques to push changes from tokyo cabinet in a multi-service setup?

Let's say I have N > 1 TCP-based, connection-oriented (read: not a website) services handling connections from end users in some load-balanced/sharing configuration. These users do things that ...
2
votes
5answers
712 views

Tokyo Cabinet and variable size C++ objects

I'm building a system, with C++, that uses Tokyo Cabinet (original API in C). The problem is I want to store a class such as: class Entity { public: string entityName; short ...
2
votes
3answers
747 views

how to build one to many rows in tokyo cabinet?

i quote from the tokyo cabinet docs... As for database of hash table, each key must be unique within a database, so it is impossible to store two or more records with a key overlaps. or does ...
1
vote
3answers
363 views

Any possible way to use Tokyo Cabinet in Eclipse?

Just spend 3 straight hours trying to solve the java.lang.UnsatisfiedLinkError: no jtokyocabinet in java.library.path problem in Eclipse in Linux. Downloaded TC and TC-Java sources, Built them both ...
1
vote
0answers
229 views

how to merge Tokyo Cabinet hash-table db's (.tch files) (no duplicate keys)

Is this possible? I couldn't find an answer anywhere. Basically I'm looking at a setup where I have multiple workers (boxes) which must all store there data into a Tokyo Cabinet index/db eventually ...
1
vote
2answers
418 views

key/value (general) and tokyo cabinet (python tc-specific) question

i have been in the RDBMS world for many years now but wish to explore the whole nosql movement. so here's my first question: is it bad practice to have the possibility of duplicate keys? for ...
1
vote
1answer
302 views

TokyoCabinet: Segmentation fault at hdb->close()

I'm stuck at a Segmentation fault after inserting about 8 million records in a TC Hash Database. After everything is inserted I close the DB but I caught a Segmentation Fault at this part of the code ...
1
vote
1answer
247 views

Sharing DB connections across objects using class methods in ruby?

I am writing a ruby script to be used as Postfix SMTP access policy delegation. The script needs to access a Tokyo Tyrant database. I am using EventMachine to take care of network connections. ...
0
votes
0answers
17 views

Tokyo Cabinet lexical comparison in py-tcdb b+ tree

We have been implementing a tokyo cabinet bdb using the py-tcdb library. Part of the reason for choosing the bdb versus the hash db was the ability to sort the keys and retrieve all keys with a common ...
0
votes
0answers
12 views

Tokyo Tyrant + dystopia

I am trying to run a network based tokyo dystopia server. I am able to run dystopia database locally using the api. My question is there way using toktotyrant ttserver to run the dystopia database ...
0
votes
0answers
16 views

Tokyo Cabinet's table database search function thinks all primary keys are numerically equal to 0. How can I do a numeric search on the primary key?

I have a Java application which is making use of Tokyo Cabinet to store a couple tables. In one of them I frequently want to randomly select a primary key. The keys are created using the TDB.genuid() ...
0
votes
2answers
62 views

python: incrementing values in a tokyo cabinet store

I am using tcdb to hold a large key-value store. The keys are strings representing user IDs, the values are dicts of the form {'coord':0,'node':0,'way':0,'relation':0} The store is filled iterating ...
0
votes
1answer
33 views

Is this a bug of TokyoCabinet?

It's basically a binary tree which first searches against hash to decide whether it's left or right: if(hash > rec.hash){ off = rec.left; entoff = rec.off + (sizeof(uint8_t) + ...
0
votes
0answers
23 views

Tag cloud using tokyo cabinet

I want to create a browseable tag cloud using TokyoCabinet to sort articles. Using Redis I'd create a number of sets and using TokyoCabinet I could create a separate database. Is there a more straight ...
0
votes
0answers
58 views

Using TokyoCabinet module in PyDev Eclipse

I am trying to use the tokyo cabinet db module in PyDev-Eclipse on Mac-OS. I am running python 2.7.1 version. I have installed tokyo cabinet module from http://tokyo-python.googlecode.com, but I am ...
0
votes
0answers
241 views

Choosing a key schema for best performance in Tokyo Tyrant

I did some testing on Tokyo Tyrant server, each time on a fresh hash database (tch), with bnum set to 10000000. Simple test script written in php: $tt = new TokyoTyrant('localhost',1978); $max = ...
0
votes
1answer
265 views

which is the efficient db for autosuggest for some million datas

i need to know which will be the best db for an autosugest db with some 80 million records... 1)Redis 2)tokyoCabinet 3)Kyoto Cabinet
0
votes
1answer
140 views

Tokyo cabinet does not compile on cygwin

I am completely newbie with cygwin and I am trying to compile tokyo cabinet I get the following error and cannot figure out why I have this conflict Could someone help me out ? Thanks $ make gcc -c ...
0
votes
1answer
82 views

Storing a large number of objects that belong to a list

I am using rails and have the following scenario: Users have_many lists and each list contains a number of words with each word having its own definition. The list show view shows all the words ...
0
votes
2answers
371 views

java.lang.UnsatisfiedLinkError - loading multiple lib files?

At first, this error looked normal to me, but after trying all known things, I still have no luck running my program. So please let me explain in detail. I am trying to run TC(TokyoCabinet) example ...
0
votes
1answer
262 views

Using multiple key value stores

I am using Ruby on Rails and have a situation that I am wondering if is appropriate for using some sort of Key Value Store instead of MySQL. I have users that have_many lists and each list has_many ...
0
votes
1answer
155 views

Compilation problem in tokyo cabinate C program

i am new to tokyo cabinet and i have installed it and i have run the example c program i am getting error... while i compile with gcc gcc -O tcadbex.c /tmp/cc7IEOht.o: In function `main': ...
0
votes
1answer
212 views

tokyo-python Install Issues

I'm trying to use Tokyo Cabinet in Python via the tokyo-python package. I've installed Cabinet, and the Cabinet development library. However, whenever I try to install tokyo-python with pip or ...
0
votes
1answer
129 views

Any chance to get Core Data using Tokyo Cabinet as the persistent store?

I watched a free high quality video with Aaron Hillegass about Core Data vs Tokyo Cabinet. Besides that this guy is amazingly funny (really, if you want to laugh now, watch it!), he shows off Tokyo ...
0
votes
1answer
127 views

How to store an array as the value in Tokyo Cabinet?

Is there any way I can store an array of numbers in a Tokyo Cabinet db? For example, I have predictable arrays of values such as 1 => [1, 2, 444, 0.987], 2 => [2, 23, 123, -0.234], 3 => [3, ...

1 2