Websites/config/initializers/cache_store.rb

10 lines
274 B
Ruby

def cache_store
[:memory_store, { size: 64.megabytes }]
end
Rails.application.configure do
config.cache_store = cache_store
config.action_controller.cache_store = cache_store
Rails.cache = ActiveSupport::Cache.lookup_store(Rails.application.config.cache_store)
end