Skip to Content Skip to Search

module AbstractController::Caching

Inherits From

Public instance methods

Source code GitHub
# File actionpack/lib/abstract_controller/caching.rb, line 54
def view_cache_dependencies
  self.class._view_cache_dependencies.filter_map { |dep| instance_exec(&dep) }
end

Private instance methods

Convenience accessor.

Source code GitHub
# File actionpack/lib/abstract_controller/caching.rb, line 60
def cache(key, options = {}, &block) # :doc:
  if cache_configured?
    cache_store.fetch(ActiveSupport::Cache.expand_cache_key(key, :controller), options, &block)
  else
    yield
  end
end

Namespace

Definition files