Class: ActionController::Caching::Actions::ActionCacheFilter
- Defined in:
- lib/action_controller/caching/actions.rb
Overview
:nodoc:
Instance Method Summary collapse
- #after(controller) ⇒ Object
- #before(controller) ⇒ Object
-
#initialize(options, &block) ⇒ ActionCacheFilter
constructor
A new instance of ActionCacheFilter.
Constructor Details
#initialize(options, &block) ⇒ ActionCacheFilter
Returns a new instance of ActionCacheFilter.
75 76 77 |
# File 'lib/action_controller/caching/actions.rb', line 75 def initialize(, &block) @options = end |
Instance Method Details
#after(controller) ⇒ Object
91 92 93 94 |
# File 'lib/action_controller/caching/actions.rb', line 91 def after(controller) return if controller.rendered_action_cache || !caching_allowed(controller) controller.write_fragment(controller.action_cache_path.path, controller.response.body) end |
#before(controller) ⇒ Object
79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/action_controller/caching/actions.rb', line 79 def before(controller) cache_path = ActionCachePath.new(controller, (controller, @options)) if cache = controller.read_fragment(cache_path.path) controller.rendered_action_cache = true set_content_type!(controller, cache_path.extension) controller.send!(:render_for_text, cache) false else controller.action_cache_path = cache_path end end |