2
votes
1answer
56 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 …
0
votes
1answer
50 views
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 n …
0
votes
0answers
33 views
Closing db file when using Tokyo Cabinets Java bindings
I'm writing a small Java-based server around Tokyo Cabinets JNI-bindings, and I am a bit confused regarding opening and closing of the db file. The server is multi-threaded, and I' …
5
votes
5answers
1k 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?
2
votes
3answers
199 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 w …
6
votes
2answers
1k 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 handl …
5
votes
8answers
486 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 --> …
2
votes
3answers
460 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, …
1
vote
1answer
92 views
TokyoCabinet: Segmentation fault at hdb->close()
Hi, 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 a …
2
votes
1answer
173 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 o …
2
votes
3answers
173 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 entit …
1
vote
1answer
63 views
Sharing DB connections across objects using class methods in ruby?
Hello,
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 …
2
votes
1answer
299 views
Tokyo Cabinet vs SQLite3 on iPhone
Hey guys,
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 ex …
4
votes
2answers
164 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 …
2
votes
1answer
265 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 i …
