dawarich/config/initializers/solid_cache.rb

12 lines
318 B
Ruby
Raw Normal View History

2025-05-31 08:00:52 -04:00
# frozen_string_literal: true
# Configure SolidCache
Rails.application.config.to_prepare do
# Only require the entries file as it seems the Entry class is defined there
begin
require 'solid_cache/store/entries'
rescue LoadError => e
Rails.logger.warn "Could not load SolidCache: #{e.message}"
end
end