简体   繁体   中英

Cant start resque worker

I've installed resque gem, gem install resque .

And I tried to start the workers :

bundle exec rake environment resque:work

Resulting in :

rake aborted!
Don't know how to build task 'resque:work' (see --tasks)

(See full trace by running task with --trace)

When I do rake -T no resque tasks appear, what am I going wrong here?

  1. You should put the resque gem into the Gemfile instead of installing it directly.

  2. Installation documentation (as of the time of writing) says that...

To start a worker, add this to a file in lib/tasks (ex: lib/tasks/resque.rake):

 require 'resque/tasks' 

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM