From 92595cea7008a5dd2133c60c0ccfbe6b57520928 Mon Sep 17 00:00:00 2001 From: Ari Timonen Date: Sun, 15 Nov 2020 05:47:43 +0200 Subject: [PATCH] Switch to rails 6 cache store --- config/application.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/application.rb b/config/application.rb index 9a6869c..13489c5 100644 --- a/config/application.rb +++ b/config/application.rb @@ -49,7 +49,7 @@ module Ensl config.secret_token = ENV['APP_SECRET'] # Use a different cache store - config.cache_store = :dalli_store, 'memcached:11211' + config.cache_store = :mem_cache_store, 'memcached:11211' # Use smtp-Server config.action_mailer.delivery_method = :smtp @@ -88,7 +88,7 @@ module Ensl config.active_support.deprecation = :notify # Enable threaded mode - # Almost nothing is thread-safe, do not + # Almost nothing is thread-safe, do NOT use this # config.threadsafe! end end