Use Rails 5.2 Redis caching store
This is the first step in providing a fault-tolerant and distributed Redis caching store. We disable compression to avoid introducing a change that could have an adverse effect in production. Note that we won't be able to take advantage of the fault-tolerance and distributed features yet until we solve https://gitlab.com/gitlab-org/gitlab-ce/issues/64829. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/64794
Showing
... | @@ -200,13 +200,13 @@ gem 'js_regex', '~> 3.1' | ... | @@ -200,13 +200,13 @@ gem 'js_regex', '~> 3.1' |
# User agent parsing | # User agent parsing | ||
gem 'device_detector' | gem 'device_detector' | ||
# Cache | |||
gem 'redis-rails', '~> 5.0.2' | |||
# Redis | # Redis | ||
gem 'redis', '~> 3.2' | gem 'redis', '~> 4.0' | ||
gem 'connection_pool', '~> 2.0' | gem 'connection_pool', '~> 2.0' | ||
# Redis session store | |||
gem 'redis-rails', '~> 5.0.2' | |||
# Discord integration | # Discord integration | ||
gem 'discordrb-webhooks-blackst0ne', '~> 3.3', require: false | gem 'discordrb-webhooks-blackst0ne', '~> 3.3', require: false | ||
... | ... |
Please register or sign in to comment