For multiprocessing pool, I could using the paramter '-c' to specify the number of worker processes. As the folloing shows.
celery worker -A celerytasks.celery_worker_init -c 5 --loglevel=info
But for gevent pool, the paramter '-c' is used to specify greenlet number. How can start multiple worker processes?
Or if I have to start mulitple wokers instead of one worker with multiple processes, could I do that with one command?