Module ActionController::Caching
In: vendor/rails/actionpack/lib/action_controller/caching.rb

Caching is a cheap way of speeding up slow applications by keeping the result of calculations, renderings, and database calls around for subsequent requests. Action Controller affords you three approaches in varying levels of granularity: Page, Action, Fragment.

You can read more about each approach and the sweeping assistance by clicking the modules below.

Note: To turn off all caching and sweeping, set Base.perform_caching = false.

Included Modules

Pages Actions Fragments Sweeping SqlCache

Classes and Modules

Module ActionController::Caching::Actions
Module ActionController::Caching::Fragments
Module ActionController::Caching::Pages
Module ActionController::Caching::SqlCache
Module ActionController::Caching::Sweeping

[Validate]