Tagged Questions

From: http://fallabs.com/kyotocabinet/ Kyoto 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 ...

learn more… | top users | synonyms

9
votes
1answer
379 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 ...
9
votes
3answers
3k views

What is the difference between Tokyo Cabinet and Kyoto Cabinet?

FAL Labs has multiple Tokyo products and Kyoto products: Tokyo Cabinet and Kyoto Cabinet are both lightweight database libraries. Tokyo Tyrant and Kyoto Tycoon are both lightweight database ...
3
votes
5answers
135 views

Any DBM for .NET?

I'm looking for a simple DBM library such as BerkeleyDB or Kyoto Cabinet, but natively working for .NET. I need to manage more than one million records (maybe ten millions), and possibly in a ...
2
votes
1answer
119 views

“Skipping incompatible” on Blue Gene machine

I'm trying to build Google Protocolbuffers and Kyotocabinet on a Blue Gene supercomputer, which is a PowerPC64 based machine, running Suse Linux, gcc 4.1.2. When I compile my code, both Google ...
2
votes
1answer
208 views

Kyoto Cabinet install via rubygems fails

I am trying to install Kyoto Cabinet via ruby gems. I am putting inside the Gemfile gem "kyotocabinet", "~> 1.0" as opposed here but when I run bundle it fails with setting variables ... ...
2
votes
0answers
145 views

Kyoto Cabinet: is there a way to do a search for nearest key?

I'd love to be able to use one of Kyoto Cabinet's tree datastructures, but I need the ability to return the nearest key. Ie I have 1,100 3,500 7,1000 And given 2, I'd return 1. Is this possible? ...
2
votes
0answers
310 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 ...
1
vote
2answers
121 views

How to use kyotocabinet(JNI) in playframework?

I'm tackling to use kyotocabinet in Playframework. and following error occurred. I'm using Eclipse and playframework-1.2.3. and kyotocabinet is native library so I'm using its Java-Binding. the ...
1
vote
3answers
686 views

In Kyoto Cabinet Database using File Hash Database, how can avoid file size increasing?

I am using the follow to open: db.open("db.kch#tune_defrag=10000", DB.OWRITER | DB.OCREATE) I am putting and removing elements. At the end of execution, the database is "empty", the count() ...
0
votes
2answers
36 views

Trouble installing Kyoto Tycoon - Java. Maven failing

I've downloaded Kyoto Tycoon via: hxxps://bitbucket.org/EP/kyototycoon-java When running mvn install I get plenty of warnings telling me it couldn't find several files: http://pastebin.com/znpJ3d5n ...
0
votes
0answers
79 views

kyoto cabinet scan_parallel not really parallel?

I just spent a day creating an abstraction layer to kyotodb to remove global locks from my code, I was busy porting my algorithms to this new abstraction layer when I discover that scan_parallel isn't ...
0
votes
0answers
51 views

KyotoCabinet Database Strategy

For example entity, Product with example attributes (name,price, image ...). Are there any advantage/disadvantages on following strategy. One database (product) with key_name, key_price, key_image ...
0
votes
1answer
279 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