Sha256: 3bba18a016896ad2422fdae2bfe30ca02ef7fa8aa8db34ef9924faa0c2ce36a1

Contents?: true

Size: 931 Bytes

Versions: 6772

Compression:

Stored size: 931 Bytes

Contents

module Typhoeus
  module Cache
    # This module provides a simple way to cache HTTP responses using Dalli.
    class Dalli
      # @example Set Dalli as the Typhoeus cache backend
      #   Typhoeus::Config.cache = Typhoeus::Cache::Dalli.new
      #
      # @param [ Dalli::Client ] client
      #   A connection to the cache server. Defaults to `Dalli::Client.new`
      # @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(client = ::Dalli::Client.new, options = {})
        @client = client
        @default_ttl = options[:default_ttl]
      end

      def get(request)
        @client.get(request.cache_key)
      end

      def set(request, response)
        @client.set(request.cache_key, response, request.cache_ttl || @default_ttl)
      end
    end
  end
end

Version data entries

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

Version Path
ory-client-0.0.1.alpha73 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha72 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha71 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha70 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha69 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha68 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha67 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha66 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-oathkeeper-client-0.38.19.beta1 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-oathkeeper-client-0.38.18.beta1 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-oathkeeper-client-0.38.17.beta1 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
avalara_sdk-2.4.7 vendor/bundle/ruby/2.6.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha58 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha57 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha56 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha55 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha54 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha53 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha52 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb
ory-client-0.0.1.alpha51 vendor/bundle/ruby/2.5.0/gems/typhoeus-1.4.0/lib/typhoeus/cache/dalli.rb