# File lib/typhoeus/cache/redis.rb, line 18 def get(request) serialized_response = @redis.get(request.cache_key) return unless serialized_response Marshal.load(serialized_response) end