I'm looking for any key-value database implementation for working with twisted in asynchronous mode. The one Idea that I have is using the Twisted Memcache API with MemcacheDB.

Is this some other solution?

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

One of possible solution is using Redis(REmote DIctionary Server). Redis is very fast, powerful and stable key-value storage which is used in many projects. Stackoverflow also uses redis;).

I've recently start using redis in my current project for creating user's ratings. My personal opinion: redis is very simple, very fast and stable. It also has a pretty command line client, I like it.

On website I use synchronous redis package. Server uses twisted and requires asynchronous approach. Fortunately, there is third-party module txredis, which allows easily to interact with redis database using twisted. I didn't have any problems with it. However, txredis doesn't have a connection pool, but it's not a problem to implement it manually, if needed.

link|improve this answer
Perhaps you should contribute a connection pool back to the txredis project? :) – Glyph Sep 19 '11 at 17:35
It's a good idea, I'll ask my boss:). – dr. Sep 20 '11 at 10:06
Curious why you would want to use a connection pool with Redis. txRedis is designed to use a persistent connection to a single Redis instance. Since Redis itself is an asynchronous server, I fail to see why having a pool of connections from one instance to a single Redis server would help. The only case where this makes sense is if all request goes through some sort of proxy service. Is that what your application does? – rlotun Oct 2 '11 at 21:34
feedback

I use Apache Cassandra from twisted, using Telephus if production for years.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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