vote up 3 vote down star
3

So I'm looking at various key:value (where value is either strictly a single value or possibly an object) stores for use with Python, and have found a few promising ones. I have no specific requirement as of yet because I am in the evaluation phase. I'm looking for what's good, what's bad, what are the corner cases these things handle well or don't, etc. I'm sure some of you have already tried them out so I'd love to hear your findings/problems/etc. on the various key:value stores with Python. I'm looking primarily at:

memcached - http://www.danga.com/memcached/ python clients: http://pypi.python.org/pypi/python-memcached/1.40 http://www.tummy.com/Community/software/python-memcached/

CouchDB - http://couchdb.apache.org/ python clients: http://code.google.com/p/couchdb-python/

Tokyo Tyrant - http://1978th.net/tokyotyrant/ python clients: http://code.google.com/p/pytyrant/

Lightcloud - http://opensource.plurk.com/LightCloud/ Based on Tokyo Tyrant, written in Python

Redis - http://code.google.com/p/redis/ python clients: http://pypi.python.org/pypi/txredis/0.1.1

MemcacheDB - http://memcachedb.org/

So I started benchmarking (simply inserting keys and reading them) using a simple count to generate numeric keys and a value of "A short string of text":

memcached: CentOS 5.3/python-2.4.3-24.el5_3.6, libevent 1.4.12-stable, memcached 1.4.2 with default settings, 1 gig memory, 14,000 inserts per second, 16,000 seconds to read. No real optimization, nice.

memcachedb claims on the order of 17,000 to 23,000 inserts per second, 44,000 to 64,000 reads per second.

I'm also wondering how the others stack up speed wise.

flag

key value stores? You mean a database? – Soviut Oct 24 at 7:52
2  
more info on your requirements ? (database size, number of entries, etc) – peufeu Oct 24 at 8:01
1  
Well, CouchDB is not a key:value store per se, it's a document database, as the data stored is not just arbitrary data but a json document. So the question becomes why you are looking for more specifically? Schemaless databases, or is it really just a key:value store you need? If you want Schemaless databases you should include ZODB in that list. – Lennart Regebro Oct 24 at 8:01
2  
-1: No requirements on which to base a comparison. They all work. What specific thing do you need them to do? What is the basis for comparing them? – S.Lott Oct 24 at 12:17
I'm looking for caveats/etc, updated question. – Kurt Oct 24 at 17:00

4 Answers

vote up 2 vote down check

That mostly depends on your need.

Read Caveats of Evaluating Databases to understand how to evaluate them.

link|flag
One of the best pages I've seen so far. – Kurt Oct 25 at 3:48
vote up 0 vote down

How about Amazon's SimpleDB?

There is an open-source python library called boto for python interfacing Amazon web services.

link|flag
Efficiency (latency mostly, remote = slow) and cost, I'd rather run it locally. – Kurt Oct 24 at 16:59
vote up 3 vote down

shelve (storing dictonaris in file / standard python module)

ZODB - persisatnce object database (python objects database, no SQL)

More persistance tools: http://wiki.python.org/moin/PersistenceTools

link|flag
Nice, I wouldn't have thought to use "persistence" as a keyword but it makes sense. – Kurt Oct 25 at 3:47
I also like this aproach better. This way you have database which is native to Python language. What you need in program is something like this (pseudocode warning) a=load_database(database) newtable={} newtable['key']='value' a['new_table']=newtable a.save – ralu Oct 25 at 14:10
vote up 1 vote down

My 5 cents:

Do you need distributed systems with tera byte sized data or massive write performance?

Well, they you need one of the big key:value/BigTable/Dynamo type things. That would by Cassandra, Tokyo Tyrant, Redis, etc. You need to make sure that the client library supports sharding so you can have multiple databases to write to. Which one to use here can only be decided by you after testing with data that looks like what you think you need.

Do you need the data to be accessible from other systems/languages than Python?

Since these databases have no structure to their data at all, if it's accessible from other languages/clients that yours depends on what you store in it. But if you need this CouchDB is a good choice, as it stores it's data a JSON documents, so you get interoperability. How good CouchDB is on really massive data and sharding is unclear though.

Do you need neither interoperability with other languages than Python or distributed multi-server storage?

Use ZODB.

link|flag
1  
Best part: use ZODB. If you need to scale it, there's a server for that (see ZEO). – Troy J. Farrell Nov 7 at 22:59

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.