Implement a new worker based on gevent
##Install
$ pip install rq-gevent-worker
##Usage
$ rqgeventworker -h
$ export PYTHONPATH=<your project import path>:$PYTHONPATH; rqgeventworker
##Test
$ pip install -r requirements.txt
$ py.test tests
##Under The Hood TODO
##TODO
- Add a command line option to specify gevent pool size
##Note
###Crash
Official Worker
use os.fork()
to spawn a child process to execute a job,
so if the job cause the process crash, the worker process is still alive.
When using gevent, we use the same process to execute job, the job may cause the whole worker process crash.
###Why not rqworker -w <geventworker>
Because we need gevent monkey patch at the start of the process, rqworker import
many modules before importing geventworker, so it will cause geventworker not work normally.
##Declaration