module HTTPX::Plugins::ResponseCache::RequestMethods

  1. lib/httpx/plugins/response_cache.rb

Methods

Public Instance

  1. response_cache_key

Public Instance methods

response_cache_key()
[show source]
    # File lib/httpx/plugins/response_cache.rb
 98 def response_cache_key
 99   @response_cache_key ||= Digest::SHA1.hexdigest("httpx-response-cache-#{@verb}-#{@uri}")
100 end