Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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?

like image 391
Bharani Avatar asked Mar 02 '09 10:03

Bharani


2 Answers

Here is an implementation of search of table engine using PyTyrant:

http://github.com/ericflo/pytyrant/tree/master

like image 113
uggedal Avatar answered Sep 22 '22 08:09

uggedal


I was in contact with the author of tc and he told me the following:

Currently, the table (tdb) driver exist in the master branch (unit tests) and the fdb driver is being developed in a separate branch.

I tried the table driver for a small test with success, am planning on trying it on larger tables soon.

like image 43
Parand Avatar answered Sep 20 '22 08:09

Parand