命名空间
方法
- C
- E
- F
- I
- N
常量
| HTTP_IF_MODIFIED_SINCE | = | "HTTP_IF_MODIFIED_SINCE" |
| HTTP_IF_NONE_MATCH | = | "HTTP_IF_NONE_MATCH" |
实例公共方法
cache_control_directives() 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/cache.rb, line 67 def cache_control_directives @cache_control_directives ||= CacheControlDirectives.new(get_header("HTTP_CACHE_CONTROL")) end
etag_matches?(etag) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/cache.rb, line 32 def etag_matches?(etag) if etag validators = if_none_match_etags validators.include?(etag) || validators.include?("*") end end
fresh?(response) 链接
检查响应新鲜度(Last-Modified 和 ETag)是否与请求的 If-Modified-Since 和 If-None-Match 条件匹配。如果同时提供了这两个标头,则根据配置,ETag 的优先级高于 Last-Modified,或者两者被同等对待。您可以使用 config.action_dispatch.strict_freshness 来调整此偏好。参考:tools.ietf.org/html/rfc7232#section-6
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/cache.rb, line 45 def fresh?(response) if Request.strict_freshness if if_none_match etag_matches?(response.etag) elsif if_modified_since not_modified?(response.last_modified) else false end else last_modified = if_modified_since etag = if_none_match return false unless last_modified || etag success = true success &&= not_modified?(response.last_modified) if last_modified success &&= etag_matches?(response.etag) if etag success end end
if_modified_since() 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/cache.rb, line 14 def if_modified_since if since = get_header(HTTP_IF_MODIFIED_SINCE) Time.rfc2822(since) rescue nil end end
if_none_match() 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/cache.rb, line 20 def if_none_match get_header HTTP_IF_NONE_MATCH end
not_modified?(modified_at) 链接
来源: 显示 | 在 GitHub 上
# File actionpack/lib/action_dispatch/http/cache.rb, line 28 def not_modified?(modified_at) if_modified_since && modified_at && if_modified_since >= modified_at end