2014-07-13 6 views
1

ruby ​​(레일이 아님)를 사용 중이며 resque gem을 설치했습니다. 매뉴얼에 따르면, 나는 다음과 같은 명령을 사용하여 근로자를 시작해야합니다레일을 사용하지 않고 resque를 시작하는 방법

resque work 

을하지만이 명령은 모든에서 노동자를 시작하지 않습니다 ('나는 빈에서 resque 파일이 있음을 확인했다/그리고 수락하지 않습니다 ').

Usage: resque [options] COMMAND 

Options: 
    -r, --redis [HOST:PORT]   Redis connection string 
    -N, --namespace [NAMESPACE]  Redis namespace 
    -h, --help      Show this message 

Commands: 
    remove WORKER Removes a worker 
    kill WORKER  Kills a worker 
    list   Lists known workers 

답변

1

만든 rakefile과 :

require "resque/tasks" 

및 실행 resque :

rake resque:work QUEUE=* 
다음

는 출력