Top "Gevent" questions

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.

Is it safe to use SQLalchemy with gevent?

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 gevent
redis-py with gevent

Can redis-py library be used with gevent ? Does anyone have experience running redis-py library with gevent? Is there a working …

python redis gevent
redis + gevent - Poor performance - what am I doing wrong?

I just wrote a simple piece of code to perf test Redis + gevent to see how async helps perforamance and …

python performance redis gevent
Uwsgi with gevent vs threads

First of all, sorry for my bad English. In my project i have a lot of I/O network requests. …

python django multithreading uwsgi gevent
Tornado/Twisted - Celery - Gevent Comparison

I'm having a bit of trouble understanding the differences between these three frameworks: Tornado/Twisted Celery Gevent These three frameworks …

python twisted celery tornado gevent
Python error: execute cannot be used while an asynchronous query is underway

How do I prevent the error “ProgrammingError: execute cannot be used while an asynchronous query is underway”? From the docs …

python psycopg2 gevent
I'm looking for gevent for Python 2.7 for windows

However gevent depends upon greenlet and the .msi version I found fails to install and the egg for 2.6 refuses to …

python gevent greenlets
How to make Django work with unsupported MySQL drivers such as gevent-mysql or Concurrence's MySQL driver?

I'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 gevent
gevent: downside to spawning large number of greenlets?

Following on from my question in the comment to this answer to the question "Gevent pool with nested web requests": …

python limit gevent spawning