Sha256: 934e749387175b29ac57a34bf812ceea93c1b2532eec092046170862b4d3f58d

Contents?: true

Size: 1.17 KB

Versions: 6772

Compression:

Stored size: 1.17 KB

Contents

module Typhoeus
  module Cache
    # This module provides a simple way to cache HTTP responses in Redis.
    class Redis
      # @example Set Redis as the Typhoeus cache backend
      #   Typhoeus::Config.cache = Typhoeus::Cache::Redis.new
      #
      # @param [ Redis ] redis
      #   A connection to Redis. Defaults to `Redis.new`, which uses the
      #   `REDIS_URL` environment variable to connect
      # @param [ Hash ] options
      #   Options
      # @option options [ Integer ] :default_ttl
      #   The default TTL of cached responses in seconds, for requests which do not set a cache_ttl.
      def initialize(redis = ::Redis.new, options = {})
        @redis = redis
        @default_ttl = options[:default_ttl]
      end

      def get(request)
        serialized_response = @redis.get(request.cache_key)
        return unless serialized_response
        Marshal.load(serialized_response)
      end

      def set(request, response)
        ttl = request.cache_ttl || @default_ttl
        key = request.cache_key
        serialized_response = Marshal.dump(response)
        @redis.set(key, serialized_response)
        @redis.expire(key, ttl) if ttl
      end
    end
  end
end

Version data entries

6,772 entries across 6,770 versions & 23 rubygems

Version Path
ory-client-0.0.1.alpha27 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-client-0.0.1.alpha24 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-client-0.0.1.alpha23 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.8.0.alpha2 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-client-0.0.1.alpha21 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-keto-client-0.7.0.alpha1 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-keto-client-0.7.0.alpha0 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.7.6.alpha7 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.7.6.alpha6 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.7.6.alpha5 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.7.6.alpha4 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.7.6.alpha3 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.7.6.alpha1 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
ory-kratos-client-0.7.5.alpha2 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
cloudsmith-api-0.57.1 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
mfk_openapi_ruby_client-1.0.0 vendor/bundle/ruby/2.7.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
cloudsmith-api-0.54.15 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
cloudsmith-api-0.53.79 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
cloudsmith-api-0.53.17 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb
cloudsmith-api-0.53.3 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/redis.rb