I was reading about the newer Python AMQP library Puka (not to be confused with Pika) and was wondering if the way it handles it's event loop would be compatible with gevent or eventlet. Based on my limited knowledge, it seems like you could automatically patch it with gevent/eventlet.

Thanks!

Source: http://github.com/majek/puka

Docs: http://majek.github.com/puka/puka.html

link|improve this question

Have it worked? I'm just looking through puka code and I must admit I'm not convinced that puka is thread safe. – Munhitsu Oct 21 '11 at 12:50
feedback

2 Answers

up vote 0 down vote accepted

Upon initial inspection it appears to be pure Python so gevent and eventlet should work fine.

link|improve this answer
feedback

Puka doesn't do gevent/eventlet out of the box, but it shouldn't be hard to modify it.

Puka blocks only in one place (in the event loop), so replacing this part should be enough.

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.