I started using ZeroMQ for async messaging for my Django project (with pyzmq) a couple of days back. I use it for pulling data from third party apps and sending emails from my app. Enhanced user experience greatly because of non-blocking calls. The APIs abstract the nitty-gritty networking details so well, that it feels like child's play to build async messaging for WSGI apps.
Comments
I started using ZeroMQ for async messaging for my Django project (with pyzmq) a couple of days back. I use it for pulling data from third party apps and sending emails from my app. Enhanced user experience greatly because of non-blocking calls. The APIs abstract the nitty-gritty networking details so well, that it feels like child's play to build async messaging for WSGI apps.
Great project indeed.