Python Table engine binding for Tokyo Cabinet - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T19:38:56Zhttp://stackoverflow.com/feeds/question/601865http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet5Python Table engine binding for Tokyo CabinetBharani2009-03-02T10:18:23Z2009-10-06T15:46:35Z
<p>I am looking for python bindings for Table engine of Tokyo cabinet. I tried <a href="http://pypi.python.org/pypi/pytc" rel="nofollow">Pytc</a> but can only find Hash and B-tree engine support. Is there any other bindings available?</p>
http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/601920#6019201Answer by Van Gale for Python Table engine binding for Tokyo CabinetVan Gale2009-03-02T10:49:03Z2009-03-02T10:49:03Z<p>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:</p>
<p><a href="http://github.com/rsms/tc/tree/master" rel="nofollow">tc</a></p>
<p>If this doesn't work you are probably out of luck. I think all the tyrant bindings only use the hash engine.</p>
http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/732178#7321784Answer by Parand for Python Table engine binding for Tokyo CabinetParand2009-04-08T22:41:45Z2009-04-08T22:41:45Z<p>I was in contact with the author of tc and he told me the following:</p>
<blockquote>
<p>Currently, the table (tdb) driver
exist in the <a href="http://github.com/rsms/tc/blob/master/src/TDB.c" rel="nofollow">master branch</a> (<a href="http://github.com/rsms/tc/blob/master/lib/tc/test/tdb.py" rel="nofollow">unit
tests</a>) and the <a href="http://github.com/rsms/tc/tree/fdb%5Frewrite" rel="nofollow">fdb driver</a> is
being developed in a separate branch.</p>
</blockquote>
<p>I tried the table driver for a small test with success, am planning on trying it on larger tables soon.</p>
http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/897843#8978436Answer by uggedal for Python Table engine binding for Tokyo Cabinetuggedal2009-05-22T13:25:52Z2009-05-24T21:38:04Z<p>Here is an implementation of search of table engine using PyTyrant:</p>
<p><a href="http://github.com/ericflo/pytyrant/tree/master" rel="nofollow">http://github.com/ericflo/pytyrant/tree/master</a></p>
http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/1312908#13129081Answer by Andy Mikhailenko for Python Table engine binding for Tokyo CabinetAndy Mikhailenko2009-08-21T16:18:21Z2009-08-21T16:18:21Z<p>There's also a decent Tokyo Tyrant API called <a href="http://code.google.com/p/pyrant" rel="nofollow">Pyrant</a>. It is actually a rewrite of PyTyrant (including <a href="http://github.com/ericflo/pytyrant/tree/master" rel="nofollow">Eric Florenzano's fork</a>), if I understand correctly.</p>
http://stackoverflow.com/questions/601865/python-table-engine-binding-for-tokyo-cabinet/1526460#15264601Answer by rsms for Python Table engine binding for Tokyo Cabinetrsms2009-10-06T15:46:35Z2009-10-06T15:46:35Z<p>My branch of pytc called "tc" do have support for tables (TDB) <a href="http://github.com/rsms/tc" rel="nofollow">http://github.com/rsms/tc</a></p>
<p>Basic example:</p>
<pre><code>>>> import tc
>>> db = tc.TDB("slab.tdb", tc.TDBOWRITER | tc.TDBOCREAT)
>>> db.put('some key', {'name': 'John Doe', 'age': '45', 'city': u'Internets'})
>>> rec = db.get('some key')
>>> print rec['name']
John Doe
</code></pre>
<p>Performing queries:</p>
<pre><code>>>> import tc
>>> db = tc.TDB("slab.tdb", tc.TDBOWRITER | tc.TDBOCREAT)
>>> db.put('torgny', {'name': 'Torgny Korv', 'age': '31', 'colors': 'red,blue,green'})
>>> db.put('rosa', {'name': 'Rosa Flying', 'age': '29', 'colors': 'pink,blue,green'})
>>> db.put('jdoe', {'name': 'John Doe', 'age': '45', 'colors': 'red,green,orange'})
>>> q = db.query()
>>> q.keys()
['torgny', 'rosa', 'jdoe']
>>> q.filter('age', tc.TDBQCNUMGE, '30')
>>> q.keys()
['torgny', 'jdoe']
>>> q.filter('colors', tc.TDBQCSTROR, 'blue')
>>> q.keys()
['torgny']
>>> # new query:
>>> q = db.query()
>>> q.order('name') # Ascending order by default
>>> q.keys()
['jdoe', 'rosa', 'torgny']
>>> q.order(type=tc.TDBQONUMASC, column='age')
>>> q.keys()
['jdoe', 'torgny', 'rosa']
</code></pre>
<p>More examples in the TDB unit test: <a href="http://github.com/rsms/tc/blob/master/lib/tc/test/tdb.py" rel="nofollow">http://github.com/rsms/tc/blob/master/lib/tc/test/tdb.py</a></p>