class HTTP::Cache::NullCache

conditionals in the request flow.
NoOp cache. Always makes the request. Allows avoiding

def perform(request, options)

Other tags:
    Yield: - so that the request can actually be made

Returns:
  • (Response) - the result of the provided block
def perform(request, options)
  yield(request, options)
end