Mike Perham
Mike Perham
I'm rethinking my long-held stance that Sidekiq only support JSON-native arguments. In large part this was meant to be a constraint which enabled cross-platform compatibility between languages -- everyone knows...
Enterprise memory monitoring exec's `ps` to get memory numbers. Switch this to use `/proc/$$/smaps_rollup` on Linux? Research if there are any better ways to do this.
See #6663
# The Past Since forever, Sidekiq has been relatively static in its runtime. You configure the concurrency, Sidekiq creates that many Threads and it executes jobs on those Threads concurrently....
I think we're overdue for moving the Sidekiq documentation from `wiki/` to `sidekiq.org/wiki`. Currently sidekiq.org is the `gh-pages` branch so: 1. Move the wiki content into markdown files. 2. Build/deploy...
Background job systems like Sidekiq use a Sorted Set as a timestamp-sorted priority queue: (epoch_seconds, job) so you'll have elements like: ZADD retry 1764016057.428448 "{job payload}" meaning that the job...