Class: Hoodoo::TransientStore::MemcachedRedisMirror
- Defined in:
- lib/hoodoo/transient_store/transient_store/memcached_redis_mirror.rb
Overview
Hoodoo::TransientStore plugin supporting storage into both Memcached and Redis simultaneously.
The implementation uses Hoodoo::TransientStore::Memcached and Hoodoo::TransientStore::Redis to talk to the two storage engines.
When looking up data with #get, the requested item must be found in both storage engines. If it is found in only one, the other one is deleted to keep maximum pool space available in both and nil
will be returned for the lookup.
Note unusual requirements for the connection URI data provided to the #initialize call.
The mirroring storage engine plug-in is useful if migrating from one of these engines to another without invalidating data present in the one from which you are migrating away. Change to using the mirrored storage engine for as long as the maximum item expiry period in the old engine, then once you know all old engine items must have been expired, cut over to just the new engine.
Instance Attribute Summary collapse
-
#get_keys_from ⇒ Object
Command an instance to allow #get to return values which are only found in one or the other storage engine, or in both.
Instance Method Summary collapse
-
#close ⇒ Object
See Hoodoo::TransientStore::Base#close for details.
-
#delete(key:) ⇒ Object
See Hoodoo::TransientStore::Base#delete for details.
-
#get(key:) ⇒ Object
See Hoodoo::TransientStore::Base#get for details.
-
#initialize(storage_host_uri:, namespace:) ⇒ MemcachedRedisMirror
constructor
See Hoodoo::TransientStore::Base::new for details.
-
#set(key:, payload:, maximum_lifespan:) ⇒ Object
See Hoodoo::TransientStore::Base#set for details.
Constructor Details
#initialize(storage_host_uri:, namespace:) ⇒ MemcachedRedisMirror
See Hoodoo::TransientStore::Base::new for details.
Do not instantiate this class directly. Use Hoodoo::TransientStore::new.
The storage_host_uri
parameter is necessarily unusual here. It must be either _a Hash_ with Symbol keys :memcached
and :redis
, or a serialised JSON string representing the same information. These values define the actual storage engine host URI for the respective engines. For example, to connect to locally running engines configured on their default ports, pass this Hash in storage_host_uri
:
{
:memcached => 'localhost:11211',
:redis => 'redis://localhost:6379'
}
…or:
"{
\"memcached\": \"localhost:11211\",
\"redis\": \"redis://localhost:6379\"
}"
See Hoodoo::TransientStore::Memcached::new and Hoodoo::TransientStore::Redis::new for details of connection URI requirements for those engines.
The value of the namespace
parameter applies equally to both engines.
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 |
# File 'lib/hoodoo/transient_store/transient_store/memcached_redis_mirror.rb', line 88 def initialize( storage_host_uri:, namespace: ) super # Pass all arguments through -> *not* 'super()' storage_host_uri = deserialize_and_symbolize( storage_host_uri ) if storage_host_uri.is_a?( String ) unless storage_host_uri.is_a?( Hash ) && storage_host_uri.has_key?( :memcached ) && storage_host_uri.has_key?( :redis ) raise 'Hoodoo::TransientStore::MemcachedRedisMirror: Bad storage host URI data passed to constructor' end @get_keys_from = :both @memcached_store = Hoodoo::TransientStore::Memcached.new( storage_host_uri: storage_host_uri[ :memcached ], namespace: namespace ) @redis_store = Hoodoo::TransientStore::Redis.new( storage_host_uri: storage_host_uri[ :redis ], namespace: namespace ) end |
Instance Attribute Details
#get_keys_from ⇒ Object
Command an instance to allow #get to return values which are only found in one or the other storage engine, or in both.
Permitted values are:
:memcached
-
Only Memcached needs to have a value for a key
:redis
-
Only Redis needs to have a value for a key
both
-
Both engines must have the key
This is useful in migration scenarios where moving from Memcached to Redis or vice versa. If wishing to be able to still read old data only in Memcached, set :memcached
; else :redis
. That way, data only in the old engine but not yet in the new is still considered valid and read back. For true mirroring which requires both stores to have the value, use :both
.
The default is :both
.
56 57 58 |
# File 'lib/hoodoo/transient_store/transient_store/memcached_redis_mirror.rb', line 56 def get_keys_from @get_keys_from end |
Instance Method Details
#close ⇒ Object
See Hoodoo::TransientStore::Base#close for details.
178 179 180 181 |
# File 'lib/hoodoo/transient_store/transient_store/memcached_redis_mirror.rb', line 178 def close @memcached_store.close() rescue nil # Rescue so that Redis "close()" is still attempted. @redis_store.close() end |
#delete(key:) ⇒ Object
See Hoodoo::TransientStore::Base#delete for details.
152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 |
# File 'lib/hoodoo/transient_store/transient_store/memcached_redis_mirror.rb', line 152 def delete( key: ) exception = nil begin @memcached_store.delete( key: key ) rescue => e exception = e end # But allow Redis delete to still be attempted... begin @redis_store.delete( key: key ) rescue => e exception ||= e end if exception.nil? return true else raise exception end end |
#get(key:) ⇒ Object
See Hoodoo::TransientStore::Base#get for details.
The requested item must be found in both Memcached and Redis. If it is found in only one, the other one is deleted to keep maximum pool space available in and nil
will be returned.
If #get_keys_from is configured for :both
and the data for some reason has ended up differing in the two stores - most likely because something modified just one of them (perhaps there is outdated code kicking around which is writing to just one) - then the Memcached copy will “win” and the Redis value will be ignored.
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'lib/hoodoo/transient_store/transient_store/memcached_redis_mirror.rb', line 125 def get( key: ) case @get_keys_from when :both memcached_result = @memcached_store.get( key: key ) redis_result = @redis_store.get( key: key ) if @get_keys_from == :both && ( memcached_result.nil? || redis_result.nil? ) delete( key: key ) return nil else return memcached_result end when :memcached return @memcached_store.get( key: key ) when :redis return @redis_store.get( key: key ) else raise "Hoodoo::TransientStore::Base\#get: Invalid prior value given in \#get_keys_from= of '#{ @get_keys_from.inspect }' - only ':both', ':memcached' or ':redis' are allowed" end end |
#set(key:, payload:, maximum_lifespan:) ⇒ Object
See Hoodoo::TransientStore::Base#set for details.
106 107 108 109 110 111 |
# File 'lib/hoodoo/transient_store/transient_store/memcached_redis_mirror.rb', line 106 def set( key:, payload:, maximum_lifespan: ) memcached_result = @memcached_store.set( key: key, payload: payload, maximum_lifespan: maximum_lifespan ) redis_result = @redis_store.set( key: key, payload: payload, maximum_lifespan: maximum_lifespan ) return memcached_result && redis_result end |