DEV Community

Discussion on: Well that was embarrassing.

Collapse
 
swanny85 profile image
Steve

Yeah sidekiq is surprisingly fast. I was regularly running into the issue although it wasn’t actually an issue. Just delayed an email an extra 30 seconds or so. On my service I send all sorts of things directly to sidekiq. Most of which are webhooks so they’re not huge. I’m going to start adding more analytics so I’ll either just continue to listen to a bunch of webhooks or ping the API every hour or so to update the metrics for my customers. Both of which I’ll have sidekiq handle. As with the database and reading uncommitted things the only issue I was having was with new users being added. We’ll see as the load increases whether that sort of issue appears again.