We're creating a high-throughput AMQP client using Qpid as the broker, and we are getting nowhere near the throughput reported in other places. (We're receiving under 250 msg/s, while this blog post gets over 4 times that.) I fear the weak performance might be due to the fact that Qpid Python client libraries are in pure Python. Does anyone know of a compiled Python AMQP library that is compatible with Qpid 0.7?
Edit 2011-07-01: Although I've accepted zeekay's answer, for Qpid they recently released SWIG bindings for their library. I've made patches that make it a (near) drop-in replacement for their pure Python client libraries. After configuration changes which got us up to about 1000 msgs/sec, using the SWIG version got us to about 7000 msgs/sec. Hopefully other Qpid users will find the bindings (and my patches) useful.
.pyxand see if Cython can compile them. – larsmans May 5 '11 at 21:08