# frozen_string_literal: true 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