我正在使用本指南来设置 Resque 与 Redis http://blog.redistogo.com/2010/07/26/resque-with-redis-to-go/
我已经设置好了,当我放一些东西时,它会显示在我的 resque 队列中。它在heroku上,所以我跑了
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]
这样就完成了工作,但现在工人仍然在那里。我现在如何删除/杀死工人?
我目前有这个0 of 4 Workers Working
我想做的,以便在队列中的任务完成后,工作人员只会删除自己。我将如何继续这样做,或者我需要调用另一个 heroku 终端命令。
resque工人在heroku上也要花钱吗?我只想让我可以手动触发我的resque队列中的任务。我不需要它自动完成。