2024-06-11 07:20:34 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2024-06-04 19:48:30 +00:00
|
|
|
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
|