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
|
|
|
|
|
|
The only other one I know of is a fork of pytc but it looks like they have only done some refactoring and documentation work, so probably still only hash and b-tree support: If this doesn't work you are probably out of luck. I think all the tyrant bindings only use the hash engine. |
||
|
|
|
I was in contact with the author of tc and he told me the following:
I tried the table driver for a small test with success, am planning on trying it on larger tables soon. |
||
|
|
|
|
Here is an implementation of search of table engine using PyTyrant: |
|||
|
|
There's also a decent Tokyo Tyrant API called Pyrant. It is actually a rewrite of PyTyrant (including Eric Florenzano's fork), if I understand correctly. |
||
|
|
|
|
My branch of pytc called "tc" do have support for tables (TDB) http://github.com/rsms/tc Basic example:
Performing queries:
More examples in the TDB unit test: http://github.com/rsms/tc/blob/master/lib/tc/test/tdb.py |
||
|
|
