Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. # Core Concepts
  2.  
  3. # API
  4. - `perform`
  5. - `perform_async`
  6.  
  7. # Gotchas
  8. - Sidekiq will retry failed jobs by default (you can set retries to 0), so:
  9. - Make sure those jobs are idempotent, since they aren't transactional.
  10. - If you can't deploy a fix before retries stop, check the dead jobs through the Sidekiq UI and retry from there, after deploying your fix.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement