Hi list, So as we know traditional web server is stateless, e.g. each request is answered by an individuale process
In more powerful modern sites often some site-wide long running connection is needed, e.g. db connection pools, and in my case a XMPP connection. So when user invokes some URL in a django view, I'd like to issue some XMPP commands, start an XMPP connection syncrhonously is slow, so I am thinking of a async way, serveral XMPP connection should always be present in a pool and ready to use. But to maintain a well established XMPP connection is pain for system administration and deploy. So I thought of uWSGI again. Any ideas if uWSGI suitable for this kind of task? Thank you all!
_______________________________________________ uWSGI mailing list [email protected] http://lists.unbit.it/cgi-bin/mailman/listinfo/uwsgi
