1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00

Had to create storage.yml for activestorage for Rails 6.1 upgrade and changed config to use mem_cache_store instead of dalli_store

This commit is contained in:
2021-02-12 13:15:07 +00:00
parent e43f3253d4
commit 55d122771c
2 changed files with 1 additions and 1 deletions

View File

@@ -54,7 +54,7 @@ Wrestling::Application.configure do
# Use a different cache store in production. # Use a different cache store in production.
# config.cache_store = :mem_cache_store # config.cache_store = :mem_cache_store
config.cache_store = :dalli_store, config.cache_store = :mem_cache_store,
(ENV["MEMCACHIER_SERVERS"] || "").split(","), (ENV["MEMCACHIER_SERVERS"] || "").split(","),
{:username => ENV["MEMCACHIER_USERNAME"], {:username => ENV["MEMCACHIER_USERNAME"],
:password => ENV["MEMCACHIER_PASSWORD"], :password => ENV["MEMCACHIER_PASSWORD"],

0
config/storage.yml Normal file
View File