Skip to content

Instantly share code, notes, and snippets.

@bleonard
Created April 14, 2017 22:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bleonard/4b772fbc091c138d81715fe2fcff6f46 to your computer and use it in GitHub Desktop.
Save bleonard/4b772fbc091c138d81715fe2fcff6f46 to your computer and use it in GitHub Desktop.
require 'tresque'
module Account
class RegularWorker
include ::TResque::Worker
# defaults to account_default queue
end
end
module Account
class RegularWorker
include ::TResque::Worker
queue :refresh # lower priority account_refresh queue
end
end
TResque.register("account") do
queue :default, 100
queue :refresh, -5000
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment