👩💻 Join our community of thousands of amazing developers!
I’ve advocated for fewer dependencies for years now. Every long-running project needs to periodically re-evaluate their usage of each dependency and the value it provides. To that end, I recently considered Sidekiq’s dependencies: redis-rb - the Redis client connection_pool - provide threaded access to Redis connections rack - required to standardize Sidekiq’s Web UI rack-protection - necessary to provide CSRF protection for write actions in the Web UI We might be able to remove rack-protectio...