12 lines
305 B
Ruby
12 lines
305 B
Ruby
# 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
|