Remove use of Redis multi in Sidekiq client
When pushing jobs to Redis, Sidekiq client uses a Redis multi call. For scheduled jobs, this is actually not needed because we're only executing one Redis command. For other jobs, the commands don't need to be atomic. This reduces the work the Redis server needs to do. Changelog: performance
Showing
Please register or sign in to comment