method

caches_page

Importance_1
v3.0.9 - Show latest stable - 0 notes - Class: ActionController::Caching::Pages::ClassMethods
caches_page(*actions) public

Caches the actions using the page-caching approach that’ll store the cache in a path within the page_cache_directory that matches the triggering url.

Usage:

# cache the index action
caches_page :index

# cache the index action except for JSON requests
caches_page :index, :if => Proc.new { |c| !c.request.format.json? }
Show source
Register or log in to add new notes.