Class: Moneta::Adapters::Redis

Inherits:
Object
  • Object
show all
Includes:
Defaults, ExpiresSupport
Defined in:
lib/moneta/adapters/redis.rb

Overview

Redis backend

Instance Attribute Summary collapse

Attributes included from ExpiresSupport

#default_expires

Instance Method Summary collapse

Methods included from Defaults

#[], #[]=, #decrement, #features, #fetch, included, #supports?

Methods included from OptionSupport

#expires, #prefix, #raw, #with

Constructor Details

#initialize(options = {}) ⇒ Redis

Returns a new instance of Redis.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :expires (Integer)

    Default expiration time

  • :backend (::Redis)

    Use existing backend instance

  • Other (Object)

    options passed to ‘Redis#new`



18
19
20
21
# File 'lib/moneta/adapters/redis.rb', line 18

def initialize(options = {})
  self.default_expires = options.delete(:expires)
  @backend = options[:backend] || ::Redis.new(options)
end

Instance Attribute Details

#backendObject (readonly)



12
13
14
# File 'lib/moneta/adapters/redis.rb', line 12

def backend
  @backend
end

Instance Method Details

#clear(options = {}) ⇒ void

This method returns an undefined value.

Clear all keys in this store

Parameters:

  • options (Hash) (defaults to: {})


69
70
71
72
# File 'lib/moneta/adapters/redis.rb', line 69

def clear(options = {})
  @backend.flushdb
  self
end

#closeObject

Explicitly close the store

Returns:

  • nil



85
86
87
88
# File 'lib/moneta/adapters/redis.rb', line 85

def close
  @backend.quit
  nil
end

#create(key, value, options = {}) ⇒ Boolean

Note:

Not every Moneta store implements this method, a NotImplementedError is raised if it is not supported.

Atomically sets a key to value if it’s not set.

Parameters:

  • key (Object)
  • value (Object)
  • options (Hash) (defaults to: {})

Options Hash (options):

  • :expires (Integer)

    Update expiration time (See Expires)

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

Returns:

  • (Boolean)

    key was set



75
76
77
78
79
80
81
82
# File 'lib/moneta/adapters/redis.rb', line 75

def create(key, value, options = {})
  if @backend.setnx(key, value)
    update_expires(key, options)
    true
  else
    false
  end
end

#delete(key, options = {}) ⇒ Object

Delete the key from the store and return the current value

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Options Hash (options):

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Object)

    current value



54
55
56
57
58
59
# File 'lib/moneta/adapters/redis.rb', line 54

def delete(key, options = {})
  if value = load(key, options)
    @backend.del(key)
    value
  end
end

#increment(key, amount = 1, options = {}) ⇒ Object

Note:

Not every Moneta store implements this method, a NotImplementedError is raised if it is not supported.

Atomically increment integer value with key

This method also accepts negative amounts.

Parameters:

  • key (Object)
  • amount (Integer) (defaults to: 1)
  • options (Hash) (defaults to: {})

Options Hash (options):

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Object)

    value from store



62
63
64
65
66
# File 'lib/moneta/adapters/redis.rb', line 62

def increment(key, amount = 1, options = {})
  value = @backend.incrby(key, amount)
  update_expires(key, options)
  value
end

#key?(key, options = {}) ⇒ Boolean

Exists the value with key

This method considers false and 0 as “no-expire” and every positive number as a time to live in seconds.

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Options Hash (options):

  • :expires (Integer)

    Update expiration time (See Expires)

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Boolean)


27
28
29
30
31
32
33
34
# File 'lib/moneta/adapters/redis.rb', line 27

def key?(key, options = {})
  if @backend.exists(key)
    update_expires(key, options, nil)
    true
  else
    false
  end
end

#load(key, options = {}) ⇒ Object

Fetch value with key. Return nil if the key doesn’t exist

Parameters:

  • key (Object)
  • options (Hash) (defaults to: {})

Options Hash (options):

  • :expires (Integer)

    Update expiration time (See Expires)

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

  • :sync (Boolean)

    Synchronized load (Cache reloads from adapter, Daybreak syncs with file)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • (Object)

    value



37
38
39
40
41
# File 'lib/moneta/adapters/redis.rb', line 37

def load(key, options = {})
  value = @backend.get(key)
  update_expires(key, options, nil)
  value
end

#store(key, value, options = {}) ⇒ Object

Store value with key

Parameters:

  • key (Object)
  • value (Object)
  • options (Hash) (defaults to: {})

Options Hash (options):

  • :expires (Integer)

    Set expiration time (See Expires)

  • :raw (Boolean)

    Raw access without value transformation (See Transformer)

  • :prefix (String)

    Prefix key (See Transformer)

  • Other (Object)

    options as defined by the adapters or middleware

Returns:

  • value



44
45
46
47
48
49
50
51
# File 'lib/moneta/adapters/redis.rb', line 44

def store(key, value, options = {})
  if expires = expires_value(options)
    @backend.setex(key, expires, value)
  else
    @backend.set(key, value)
  end
  value
end