Resque 使用

 

resque:

  resque 是一个后台任务处理框架,基于 redis

  查看 resque 运行状态 server_domain:port/resque

  配置文件 /config/initializers/resque.rb

 

  启动: QUEUE=* rake environment resque:work

  停止: CLTR + C

  后台运行:

    启动: PIDFILE=./tmp/pids/resque.pid BACKGROUND=yes QUEUE=* rake environment resque:work

    停止:kill -QUIT pid

你可能感兴趣的:(Rails,resque)