instance method
set_conditional_cache_control!
Ruby on Rails 3.1.12
Since v3.0.20 Last seen in v4.2.9 PrivateSignature
set_conditional_cache_control!()
No documentation comment.
Source
# File actionpack/lib/action_dispatch/http/cache.rb, line 86
def set_conditional_cache_control!
return if self["Cache-Control"].present?
control = @cache_control
if control.empty?
headers["Cache-Control"] = DEFAULT_CACHE_CONTROL
elsif control[:no_cache]
headers["Cache-Control"] = "no-cache"
else
extras = control[:extras]
max_age = control[:max_age]
options = []
options << "max-age=#{max_age.to_i}" if max_age
options << (control[:public] ? "public" : "private")
options << "must-revalidate" if control[:must_revalidate]
options.concat(extras) if extras
headers["Cache-Control"] = options.join(", ")
end
end
Defined in actionpack/lib/action_dispatch/http/cache.rb line 86
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActionDispatch::Http::Cache::Response