module AbstractController::Caching::ConfigMethods
Public instance methods
Source code GitHub
# File actionpack/lib/abstract_controller/caching.rb, line 15
def cache_store
config.cache_store
end
Source code GitHub
# File actionpack/lib/abstract_controller/caching.rb, line 19
def cache_store=(store)
config.cache_store = ActiveSupport::Cache.lookup_store(*store)
end