Class: Moneta::Adapters::LMDB
- Inherits:
-
Object
- Object
- Moneta::Adapters::LMDB
- Includes:
- Defaults
- Defined in:
- lib/moneta/adapters/lmdb.rb
Overview
LMDB backend
Constant Summary collapse
- PUT_FLAGS =
%i[nooverwrite nodupdata current append appenddup].freeze
Instance Attribute Summary collapse
- #backend ⇒ Object readonly
- #db ⇒ Object readonly
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 ⇒ 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) ⇒ LMDB
constructor
A new instance of LMDB.
-
#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.
-
#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 Defaults
#[], #[]=, #decrement, #features, #fetch, #fetch_values, included, #supports?, #update
Methods included from OptionSupport
#expires, #prefix, #raw, #with
Constructor Details
#initialize(options) ⇒ LMDB
Returns a new instance of LMDB.
20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/moneta/adapters/lmdb.rb', line 20 def initialize() db = .delete(:db) @backend = .delete(:backend) || begin raise ArgumentError, 'Option :dir is required' unless dir = .delete(:dir) FileUtils.mkpath(dir) ::LMDB.new(dir, ) end @db = @backend.database(db, create: true) end |
Instance Attribute Details
#backend ⇒ Object (readonly)
12 13 14 |
# File 'lib/moneta/adapters/lmdb.rb', line 12 def backend @backend end |
#db ⇒ Object (readonly)
12 13 14 |
# File 'lib/moneta/adapters/lmdb.rb', line 12 def db @db end |
Instance Method Details
#clear(options = {}) ⇒ void
This method returns an undefined value.
Clear all keys in this store
59 60 61 62 |
# File 'lib/moneta/adapters/lmdb.rb', line 59 def clear( = {}) @db.clear self end |
#close ⇒ Object
Explicitly close the store
86 87 88 89 |
# File 'lib/moneta/adapters/lmdb.rb', line 86 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.
74 75 76 77 78 79 80 81 82 83 |
# File 'lib/moneta/adapters/lmdb.rb', line 74 def create(key, value, = {}) @backend.transaction do if @db.get(key) false else @db.put(key, value, Utils.only(, *PUT_FLAGS)) true end end end |
#delete(key, options = {}) ⇒ Object
Delete the key from the store and return the current value
49 50 51 52 53 54 55 56 |
# File 'lib/moneta/adapters/lmdb.rb', line 49 def delete(key, = {}) @backend.transaction do if value = @db.get(key) @db.delete(key) value end end 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.
92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/moneta/adapters/lmdb.rb', line 92 def each_key return enum_for(:each_key) { @db.size } unless block_given? @db.cursor do |cursor| while record = cursor.next yield record[0] end end 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.
65 66 67 68 69 70 71 |
# File 'lib/moneta/adapters/lmdb.rb', line 65 def increment(key, amount = 1, = {}) @backend.transaction do value = Integer(@db.get(key) || 0) + amount @db.put(key, value.to_s, Utils.only(, *PUT_FLAGS)) value end end |
#key?(key, options = {}) ⇒ Boolean
Exists the value with key
33 34 35 |
# File 'lib/moneta/adapters/lmdb.rb', line 33 def key?(key, = {}) @db.get(key) != nil end |
#load(key, options = {}) ⇒ Object
Fetch value with key. Return nil if the key doesn’t exist
38 39 40 |
# File 'lib/moneta/adapters/lmdb.rb', line 38 def load(key, = {}) @db.get(key) 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.
115 116 117 |
# File 'lib/moneta/adapters/lmdb.rb', line 115 def merge!(pairs, = {}) @backend.transaction { super } 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.
110 111 112 |
# File 'lib/moneta/adapters/lmdb.rb', line 110 def slice(*keys, **) @backend.transaction { super } end |
#store(key, value, options = {}) ⇒ Object
Store value with key
43 44 45 46 |
# File 'lib/moneta/adapters/lmdb.rb', line 43 def store(key, value, = {}) @db.put(key, value, Utils.only(, *PUT_FLAGS)) 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.
105 106 107 |
# File 'lib/moneta/adapters/lmdb.rb', line 105 def values_at(*keys, **) @backend.transaction { super } end |