Module: Responders::HttpCacheResponder
- Defined in:
- lib/responders/http_cache_responder.rb
Overview
Set HTTP Last-Modified headers based on the given resource. It’s used only on API behavior (to_format) and is useful for a client to check in the server if a resource changed after a specific date or not.
This is not usually not used in html requests because pages contains a lot information besides the resource information, as current_user, flash messages, widgets… that are better handled with other strategies, as fragment caches and the digest of the body.
Instance Method Summary collapse
Instance Method Details
#initialize(controller, resources, options = {}) ⇒ Object
14 15 16 17 |
# File 'lib/responders/http_cache_responder.rb', line 14 def initialize(controller, resources, = {}) super @http_cache = .delete(:http_cache) end |
#to_format ⇒ Object
19 20 21 22 |
# File 'lib/responders/http_cache_responder.rb', line 19 def to_format return if do_http_cache? && do_http_cache! super end |