Class: Moneta::Adapters::Redis
- Inherits:
-
Moneta::Adapter
- Object
- Moneta::Adapter
- Moneta::Adapters::Redis
- Includes:
- ExpiresSupport
- Defined in:
- lib/moneta/adapters/redis.rb
Overview
Redis backend
Instance Attribute Summary
Attributes inherited from Moneta::Adapter
Instance Method Summary collapse
-
#clear(options = {}) ⇒ void
Clear all keys in this store.
-
#close ⇒ Object
Explicitly close the store.
-
#create(key, value, options = {}) ⇒ Boolean
Atomically sets a key to value if it’s not set.
-
#delete(key, options = {}) ⇒ Object
Delete the key from the store and return the current value.
-
#each_key(&block) ⇒ Object
Calls block once for each key in store, passing the key as a parameter.
-
#increment(key, amount = 1, options = {}) ⇒ Object
Atomically increment integer value with key.
- #initialize(options = {}) ⇒ Object constructor
-
#key?(key, options = {}) ⇒ Boolean
Exists the value with key.
-
#load(key, options = {}) ⇒ Object
Fetch value with key.
-
#merge!(pairs, options = {}) ⇒ Object
Stores the pairs in the key-value store, and returns itself.
-
#store(key, value, options = {}) ⇒ Object
Store value with key.
-
#values_at(*keys, **options) ⇒ Array<Object, nil>
Returns an array containing the values associated with the given keys, in the same order as the supplied keys.
Methods included from ExpiresSupport
Methods inherited from Moneta::Adapter
backend, backend_block, backend_required?
Methods included from Config
Methods included from Defaults
#[], #[]=, #decrement, #features, #fetch, #fetch_values, included, #slice, #supports?, #update
Methods included from OptionSupport
#expires, #prefix, #raw, #with
Constructor Details
#initialize(options = {}) ⇒ Object
17 |
# File 'lib/moneta/adapters/redis.rb', line 17 backend { |**| ::Redis.new() } |
Instance Method Details
#clear(options = {}) ⇒ void
This method returns an undefined value.
Clear all keys in this store
77 78 79 80 |
# File 'lib/moneta/adapters/redis.rb', line 77 def clear( = {}) @backend.flushdb self end |
#close ⇒ Object
Explicitly close the store
95 96 97 98 |
# File 'lib/moneta/adapters/redis.rb', line 95 def close @backend.quit nil end |
#create(key, value, options = {}) ⇒ Boolean
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.
83 84 85 86 87 88 89 90 91 92 |
# File 'lib/moneta/adapters/redis.rb', line 83 def create(key, value, = {}) expires = expires_value(, config.expires) if @backend.setnx(key, value) update_expires(@backend, key, expires) true else false end end |
#delete(key, options = {}) ⇒ Object
Delete the key from the store and return the current value
60 61 62 63 64 65 66 67 |
# File 'lib/moneta/adapters/redis.rb', line 60 def delete(key, = {}) future = nil @backend.pipelined do |pipeline| future = pipeline.get(key) pipeline.del(key) end future.value end |
#each_key ⇒ Enumerator #each_key {|key| ... } ⇒ self
Not every Moneta store implements this method, a NotImplementedError is raised if it is not supported.
Calls block once for each key in store, passing the key as a parameter. If no block is given, an enumerator is returned instead.
34 35 36 37 38 39 |
# File 'lib/moneta/adapters/redis.rb', line 34 def each_key(&block) return enum_for(:each_key) unless block_given? @backend.scan_each { |k| yield(k) } self end |
#increment(key, amount = 1, options = {}) ⇒ Object
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.
70 71 72 73 74 |
# File 'lib/moneta/adapters/redis.rb', line 70 def increment(key, amount = 1, = {}) with_expiry_update(key, **) do |pipeline_handle| pipeline_handle.incrby(key, amount) end 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.
23 24 25 26 27 28 29 30 31 |
# File 'lib/moneta/adapters/redis.rb', line 23 def key?(key, = {}) with_expiry_update(key, default: nil, **) do |pipeline_handle| if pipeline_handle.respond_to?(:exists?) pipeline_handle.exists?(key) else pipeline_handle.exists(key) end end end |
#load(key, options = {}) ⇒ Object
Fetch value with key. Return nil if the key doesn’t exist
42 43 44 45 46 |
# File 'lib/moneta/adapters/redis.rb', line 42 def load(key, = {}) with_expiry_update(key, default: nil, **) do |pipeline_handle| pipeline_handle.get(key) end end |
#merge!(pairs, options = {}) ⇒ self #merge!(pairs, options = {}) {|key, old_value, new_value| ... } ⇒ self
Stores the pairs in the key-value store, and returns itself. When a block is provided, it will be called before overwriting any existing values with the key, old value and supplied value, and the return value of the block will be used in place of the supplied value.
108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'lib/moneta/adapters/redis.rb', line 108 def merge!(pairs, = {}) keys = pairs.map { |key, _| key }.to_a return self if keys.empty? if block_given? old_values = @backend.mget(*keys) updates = pairs.each_with_index.with_object({}) do |(pair, i), updates| old_value = old_values[i] if old_value != nil key, new_value = pair updates[key] = yield(key, old_value, new_value) end end unless updates.empty? pairs = if pairs.respond_to?(:merge) pairs.merge(updates) else Hash[pairs.to_a].merge!(updates) end end end with_expiry_update(*keys, **) do |pipeline_handle| pipeline_handle.mset(*pairs.to_a.flatten(1)) end self end |
#store(key, value, options = {}) ⇒ Object
Store value with key
49 50 51 52 53 54 55 56 57 |
# File 'lib/moneta/adapters/redis.rb', line 49 def store(key, value, = {}) if expires = expires_value() Numeric === expires and expires = (expires * 1000).to_i @backend.psetex(key, expires, value) else @backend.set(key, value) end value end |
#values_at(*keys, **options) ⇒ Array<Object, nil>
Some adapters may implement this method atomically, but the default implementation simply makes repeated calls to #load.
Returns an array containing the values associated with the given keys, in the same order as the supplied keys. If a key is not present in the key-value-store, nil is returned in its place.
101 102 103 104 105 |
# File 'lib/moneta/adapters/redis.rb', line 101 def values_at(*keys, **) with_expiry_update(*keys, default: nil, **) do |pipeline_handle| pipeline_handle.mget(*keys) end end |