модуль AbstractController::Caching
Публичные методы экземпляра
# File actionpack/lib/abstract_controller/caching.rb, line 51
def view_cache_dependencies
self.class._view_cache_dependencies.map { |dep| instance_exec(&dep) }.compact
end Приватные методы экземпляра
# File actionpack/lib/abstract_controller/caching.rb, line 57
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 Удобный метод доступа.
© 2004–2018 David Heinemeier Hansson
Licensed under the MIT License.