Class: Moneta::Adapters::Cassandra
- Inherits:
-
Object
- Object
- Moneta::Adapters::Cassandra
- Includes:
- Defaults, ExpiresSupport
- Defined in:
- lib/moneta/adapters/cassandra.rb
Overview
Cassandra backend
Instance Attribute Summary collapse
- #backend ⇒ Object readonly
Attributes included from ExpiresSupport
Instance Method Summary collapse
-
#clear(options = {}) ⇒ void
Clear all keys in this store.
-
#close ⇒ Object
Explicitly close the store.
-
#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.
-
#fetch_values(*keys, **options) ⇒ Object
Behaves identically to #values_at except that it accepts an optional block.
-
#initialize(options = {}) ⇒ Cassandra
constructor
A new instance of Cassandra.
-
#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
#[], #[]=, #create, #decrement, #features, #fetch, included, #increment, #supports?, #update
Methods included from OptionSupport
#expires, #prefix, #raw, #with
Constructor Details
#initialize(options = {}) ⇒ Cassandra
Returns a new instance of Cassandra.
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/moneta/adapters/cassandra.rb', line 39 def initialize( = {}) self.default_expires = .delete(:expires) keyspace = .delete(:keyspace) || 'moneta' @table = (.delete(:column_family) || 'moneta').to_sym @key_column = .delete(:key_column) || 'key' @value_column = .delete(:value_column) || 'value' @updated_column = .delete(:updated_column) || 'updated_at' @expired_column = .delete(:expired_column) || 'expired' @read_consistency = .delete(:read_consistency) || :all @write_consistency = .delete(:write_consistency) || :all @create_keyspace = .delete(:create_keyspace) unless @backend = .delete(:backend) cluster = .delete(:cluster) || (@own_cluster = ::Cassandra.cluster()) begin @backend = cluster.connect(keyspace) rescue ::Cassandra::Errors::InvalidError @backend = cluster.connect create_keyspace(keyspace) @backend.execute("USE " + keyspace) @backend end end @backend.execute " CREATE TABLE IF NOT EXISTS \#{@table} (\n \#{@key_column} blob,\n \#{@value_column} blob,\n \#{@updated_column} timeuuid,\n \#{@expired_column} boolean,\n PRIMARY KEY (\#{@key_column}, \#{@updated_column})\n )\n CQL\n\n prepare_statements\nend\n" |
Instance Attribute Details
#backend ⇒ Object (readonly)
11 12 13 |
# File 'lib/moneta/adapters/cassandra.rb', line 11 def backend @backend end |
Instance Method Details
#clear(options = {}) ⇒ void
This method returns an undefined value.
Clear all keys in this store
135 136 137 138 |
# File 'lib/moneta/adapters/cassandra.rb', line 135 def clear( = {}) @backend.execute(@clear) self end |
#close ⇒ Object
Explicitly close the store
141 142 143 144 145 146 147 148 149 |
# File 'lib/moneta/adapters/cassandra.rb', line 141 def close @backend.close_async @backend = nil if @own_cluster @own_cluster.close_async @own_cluster = nil end nil end |
#delete(key, options = {}) ⇒ Object
Delete the key from the store and return the current value
125 126 127 128 129 130 131 132 |
# File 'lib/moneta/adapters/cassandra.rb', line 125 def delete(key, = {}) rc, wc = consistency() result = @backend.execute(@delete_value, .merge(consistency: rc, arguments: [key])) if row = result.first and row[@expired_column] != nil @backend.execute(@delete, .merge(consistency: wc, arguments: [, key, row[@updated_column]])) row[@value_column] 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.
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
# File 'lib/moneta/adapters/cassandra.rb', line 152 def each_key rc, _ = consistency return enum_for(:each_key) unless block_given? result = @backend.execute(@each_key, consistency: rc, page_size: 100) loop do result.each do |row| next if row[@expired_column] == nil yield row[@key_column] end break if result.last_page? result = result.next_page end self end |
#fetch_values(*keys, **options) ⇒ Object #fetch_values(*keys, **options) {|key| ... } ⇒ Array<Object, nil>
Some adapters may implement this method atomically. The default implmentation uses #values_at.
Behaves identically to #values_at except that it accepts an optional block. When supplied, the block will be called successively with each supplied key that is not present in the store. The return value of the block call will be used in place of nil in returned the array of values.
204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/moneta/adapters/cassandra.rb', line 204 def fetch_values(*keys, **) return values_at(*keys, **) unless block_given? hash = Hash[slice(*keys, **)] keys.map do |key| if hash.key?(key) hash[key] else yield key end end end |
#key?(key, options = {}) ⇒ Boolean
Exists the value with key
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/moneta/adapters/cassandra.rb', line 78 def key?(key, = {}) rc, wc = consistency() if (expires = expires_value(, nil)) != nil # Because Cassandra expires each value in a column, rather than the # whole column, when we want to update the expiry we load the value # and then re-set it in order to update the TTL. return false unless row = @backend.execute(@load, .merge(consistency: rc, arguments: [key])).first and row[@expired_column] != nil @backend.execute(@update_expires, .merge(consistency: wc, arguments: [ (expires || 0).to_i, , row[@value_column], key, row[@updated_column] ])) true elsif row = @backend.execute(@key, .merge(consistency: rc, arguments: [key])).first row[@expired_column] != nil else false end end |
#load(key, options = {}) ⇒ Object
Fetch value with key. Return nil if the key doesn’t exist
99 100 101 102 103 104 105 106 107 108 109 |
# File 'lib/moneta/adapters/cassandra.rb', line 99 def load(key, = {}) rc, wc = consistency() if row = @backend.execute(@load, .merge(consistency: rc, arguments: [key])).first and row[@expired_column] != nil if (expires = expires_value(, nil)) != nil @backend.execute(@update_expires, .merge(consistency: wc, arguments: [ (expires || 0).to_i, , row[@value_column], key, row[@updated_column] ])) end row[@value_column] 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.
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 |
# File 'lib/moneta/adapters/cassandra.rb', line 217 def merge!(pairs, = {}) keys = pairs.map { |k, _| k }.to_a return self if keys.empty? if block_given? existing = Hash[slice(*keys, **)] pairs = pairs.map do |key, new_value| if existing.key?(key) [key, yield(key, existing[key], new_value)] else [key, new_value] end end end rc, wc = consistency() expires = expires_value() t = batch = @backend.batch do |batch| batch.add(@merge_delete, arguments: [t, keys]) pairs.each do |key, value| batch.add(@store, arguments: [key, value, (expires || 0).to_i, t + 1]) end end @backend.execute(batch, .merge(consistency: wc)) 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.
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
# File 'lib/moneta/adapters/cassandra.rb', line 169 def slice(*keys, **) rc, wc = consistency() result = @backend.execute(@slice, .merge(consistency: rc, arguments: [keys])) expires = expires_value(, nil) updated = [] if expires != nil pairs = result.map do |row| next if row[@expired_column] == nil if expires != nil updated << [row[@key_column], row[@value_column], row[@updated_column]] end [row[@key_column], row[@value_column]] end.compact if expires != nil && !updated.empty? ttl = (expires || 0).to_i t = batch = @backend.batch do |batch| updated.each do |key, value, updated| batch.add(@update_expires, arguments: [ttl, t, value, key, updated]) end end @backend.execute(batch, .merge(consistency: wc)) end pairs end |
#store(key, value, options = {}) ⇒ Object
Store value with key
112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/moneta/adapters/cassandra.rb', line 112 def store(key, value, = {}) _, wc = consistency() expires = expires_value() t = batch = @backend.batch do |batch| batch.add(@store_delete, arguments: [t, key]) batch.add(@store, arguments: [key, value, (expires || 0).to_i, t + 1]) end @backend.execute(batch, .merge(consistency: wc)) 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.
198 199 200 201 |
# File 'lib/moneta/adapters/cassandra.rb', line 198 def values_at(*keys, **) hash = Hash[slice(*keys, **)] keys.map { |key| hash[key] } end |