diff options
author | Stan Hu <stanhu@gmail.com> | 2019-07-19 13:58:44 -0700 |
---|---|---|
committer | Stan Hu <stanhu@gmail.com> | 2019-08-05 15:52:52 -0700 |
commit | b5771bccc6031c3adbdee31064f1c0c981ab73d4 (patch) | |
tree | d77c04677d8ed026ba2d00f5f68caac8e2355296 /Gemfile | |
parent | 029381b1d9219ad6fd5ed68f2f93e418f1dd55ca (diff) | |
download | gitlab-ce-b5771bccc6031c3adbdee31064f1c0c981ab73d4.tar.gz |
Use Rails 5.2 Redis caching storesh-use-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
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -200,13 +200,13 @@ gem 'js_regex', '~> 3.1' # User agent parsing gem 'device_detector' -# Cache -gem 'redis-rails', '~> 5.0.2' - # Redis -gem 'redis', '~> 3.2' +gem 'redis', '~> 4.0' gem 'connection_pool', '~> 2.0' +# Redis session store +gem 'redis-rails', '~> 5.0.2' + # Discord integration gem 'discordrb-webhooks-blackst0ne', '~> 3.3', require: false |