I am using Gearman as my job queue manager. Basically i use gearman to manage mail jobs (fire & forget approach). I have a single worker to handle those mail sending jobs. When my application is going to send large amount (>1000) of emails, i can see the queue is growing and it takes some time to process the complete task.
Can i add more workers to pick jobs from the queue?. Can Gearman handle that worker management or should i intentionally add workers by tracking the queue size. Can anybody help me?