Delayed job :: URGENT

Hi,

I am bit confused in rails delayed job

  1. what is workers
  2. what is process?
  3. both workers and processes are same ???

Each worker runs on a process. When you run the “ps” command on linux you’ll see a list of processes running on your system, you’ll have as many delayed job processes as you have configured. Each of those processes run a delayed job worker.