class HTTP::Request::Caching

def skips_cache?

Other tags:
    Api: - public

Returns:
  • (Boolean) - true iff the cache control info of this
def skips_cache?
  0 == cache_headers.max_age       ||
    cache_headers.must_revalidate? ||
    cache_headers.no_cache?
end