Class: Kredis::Types::Proxy

Inherits:
Object
  • Object
show all
Includes:
Failsafe
Defined in:
lib/kredis/types/proxy.rb

Defined Under Namespace

Modules: Failsafe

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Failsafe

#failsafe, #suppress_failsafe_with

Constructor Details

#initialize(redis, key, **options) ⇒ Proxy

Returns a new instance of Proxy.



7
8
9
10
# File 'lib/kredis/types/proxy.rb', line 7

def initialize(redis, key, **options)
  @redis, @key = redis, key
  options.each { |key, value| send("#{key}=", value) }
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, **kwargs) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/kredis/types/proxy.rb', line 16

def method_missing(method, *args, **kwargs)
  Kredis.instrument :proxy, **log_message(method, *args, **kwargs) do
    failsafe do
      redis.public_send method, key, *args, **kwargs
    end
  end
end

Instance Attribute Details

#keyObject

Returns the value of attribute key.



5
6
7
# File 'lib/kredis/types/proxy.rb', line 5

def key
  @key
end

#redisObject

Returns the value of attribute redis.



5
6
7
# File 'lib/kredis/types/proxy.rb', line 5

def redis
  @redis
end

Instance Method Details

#multiObject



12
13
14
# File 'lib/kredis/types/proxy.rb', line 12

def multi(...)
  redis.multi(...)
end