I am using this guide to setup Resque with Redis http://blog.redistogo.com/2010/07/26/resque-with-redis-to-go/
I have it all set up and when I put something it shows up on my resque queue. It is on heroku so then I run
heroku rake resque:work QUEUE=*
(in /app)
Starting the New Relic Agent.
Installed New Relic Browser Monitoring middleware
Connected to NewRelic Service at collector-1.newrelic.com:80
^C
[canceled]
This then completes the job, but now the worker is still there. How do I now delete/kill the worker?
I currently have this 0 of 4 Workers Working I want to make it so that after the tasks in the queue are completed then the worker just deletes itself. How would I go on doing this or is there another heroku terminal command I need to call.
Also do resque workers cost any money on heroku? I just want to make so I can manually trigger tasks in my resque queue. I dont need it to be doing it automatically.