Gevent is a coroutine-based Python networking library that uses greenlet to provide a high-level synchronous API on top of libevent (libev after 1.0) event loop.
I know that some database drivers and other libraries providing connection to external services are incompatible with coroutine-based network libraries. …
python thread-safety sqlalchemy geventCan redis-py library be used with gevent ? Does anyone have experience running redis-py library with gevent? Is there a working …
python redis geventI just wrote a simple piece of code to perf test Redis + gevent to see how async helps perforamance and …
python performance redis geventFirst of all, sorry for my bad English. In my project i have a lot of I/O network requests. …
python django multithreading uwsgi geventHow do I prevent the error “ProgrammingError: execute cannot be used while an asynchronous query is underway”? From the docs …
python psycopg2 geventHowever gevent depends upon greenlet and the .msi version I found fails to install and the egg for 2.6 refuses to …
python gevent greenletsI'm interested in running Django on an async framework like Concurrence or gevent. Both frameworks come with its own async …
mysql django asynchronous django-database geventI am playing around with gevent, and I am trying to understand why my code is blocking and how I …
python nonblocking gevent