Class: Moneta::Adapters::MemcachedDalli
- Inherits:
-
Moneta::Adapter
- Object
- Moneta::Adapter
- Moneta::Adapters::MemcachedDalli
- Includes:
- ExpiresSupport
- Defined in:
- lib/moneta/adapters/memcached/dalli.rb
Overview
Memcached backend (using gem dalli)
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.
-
#increment(key, amount = 1, options = {}) ⇒ Object
Atomically increment integer value with key.
- #initialize(options = {}) ⇒ Object constructor
-
#load(key, options = {}) ⇒ Object
Fetch value with key.
-
#merge!(pairs, options = {}) ⇒ Object
Stores the pairs in the key-value store, and returns itself.
-
#slice(*keys, **options) ⇒ <(Object, Object)>
Returns a collection of key-value pairs corresponding to those supplied keys which are present in the key-value store, and their associated values.
-
#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, #each_key, #features, #fetch, #fetch_values, included, #key?, #supports?, #update
Methods included from OptionSupport
#expires, #prefix, #raw, #with
Constructor Details
#initialize(options = {}) ⇒ Object
18 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 18 backend { |server: '127.0.0.1:11211', **| ::Dalli::Client.new(server, ) } |
Instance Method Details
#clear(options = {}) ⇒ void
This method returns an undefined value.
Clear all keys in this store
61 62 63 64 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 61 def clear( = {}) backend.flush_all self end |
#close ⇒ Object
Explicitly close the store
72 73 74 75 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 72 def close backend.close 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.
67 68 69 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 67 def create(key, value, = {}) !!backend.add(key, value, expires_value() || nil, raw: true) end |
#delete(key, options = {}) ⇒ Object
Delete the key from the store and return the current value
37 38 39 40 41 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 37 def delete(key, = {}) value = backend.get(key) backend.delete(key) value 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.
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 44 def increment(key, amount = 1, = {}) result = if amount >= 0 backend.incr(key, amount, expires_value() || nil) else backend.decr(key, -amount, expires_value() || nil) end if result result elsif create(key, amount.to_s, ) amount else increment(key, amount, ) end end |
#load(key, options = {}) ⇒ Object
Fetch value with key. Return nil if the key doesn’t exist
21 22 23 24 25 26 27 28 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 21 def load(key, = {}) value = backend.get(key) if value expires = expires_value(, nil) backend.set(key, value, expires || nil, raw: true) if expires != nil value end end |
#merge!(pairs, options = {}) ⇒ self #merge!(pairs, options = {}) {|key, old_value, new_value| ... } ⇒ self
Some adapters may implement this method atomically, or in two passes when a block is provided. The default implmentation uses Defaults#key?, #load and #store.
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.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 100 def merge!(pairs, = {}) expires = expires_value() expires = expires.to_i if Numeric === expires expires ||= nil if block_given? keys = pairs.map { |key, _| key }.to_a old_pairs = backend.get_multi(keys) pairs = pairs.map do |key, new_value| if old_pairs.key? key new_value = yield(key, old_pairs[key], new_value) end [key, new_value] end end backend.multi do pairs.each do |key, value| backend.set(key, value, expires, raw: true) end end self end |
#slice(*keys, **options) ⇒ <(Object, Object)>
The keys in the return value may be the same objects that were supplied (i.e. Object#equal?), or may simply be equal (i.e. Object#==).
Some adapters may implement this method atomically. The default implmentation uses #values_at.
Returns a collection of key-value pairs corresponding to those supplied keys which are present in the key-value store, and their associated values. Only those keys present in the store will have pairs in the return value. The return value can be any enumerable object that yields pairs, so it could be a hash, but needn’t be.
78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 78 def slice(*keys, **) backend.get_multi(keys).tap do |pairs| next if pairs.empty? expires = expires_value(, nil) next if expires == nil expires = expires.to_i if Numeric === expires expires ||= 0 backend.multi do pairs.each do |key, value| backend.set(key, value, expires, false) end end end end |
#store(key, value, options = {}) ⇒ Object
Store value with key
31 32 33 34 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 31 def store(key, value, = {}) backend.set(key, value, expires_value() || nil, raw: true) 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.
94 95 96 97 |
# File 'lib/moneta/adapters/memcached/dalli.rb', line 94 def values_at(*keys, **) pairs = slice(*keys, **) keys.map { |key| pairs.delete(key) } end |