Class: PrefixedCacheStore
- Inherits:
-
Object
- Object
- PrefixedCacheStore
- Extended by:
- Forwardable
- Defined in:
- lib/prefixed_cache_store.rb
Overview
A caching store that will expire only the keys saved through it, by using a common prefix for the namespace and the version number that can be ratched up to “unlink” all the related keys. It assumes that the keys are being evicted automatically if they do not get used often.
Constant Summary collapse
- VERSION =
'0.0.1'- RETAIN_PREFIX_FOR_SECONDS =
10
Instance Attribute Summary collapse
-
#prefix ⇒ Object
readonly
Returns the value of attribute prefix.
-
#store ⇒ Object
readonly
Returns the value of attribute store.
Instance Method Summary collapse
-
#clear(options = nil) ⇒ Object
Bump the version prefix making all keys obsolete.
-
#decrement(name, amount = 1, options = nil) ⇒ Object
Decrement a cached value.
- #delete(name, options = nil) ⇒ Object
- #exist?(name, options = nil) ⇒ Boolean
- #fetch(name, options = nil) ⇒ Object
-
#increment(name, amount = 1, options = nil) ⇒ Object
Increment a cached value.
-
#initialize(store, prefix = 'pfx') ⇒ PrefixedCacheStore
constructor
A new instance of PrefixedCacheStore.
- #read(name, options = nil) ⇒ Object
-
#read_multi(*names) ⇒ Object
Reads multiple keys from the cache using a single call to the servers for all keys.
- #write(name, value, options = nil) ⇒ Object
Constructor Details
#initialize(store, prefix = 'pfx') ⇒ PrefixedCacheStore
Returns a new instance of PrefixedCacheStore.
22 23 24 25 |
# File 'lib/prefixed_cache_store.rb', line 22 def initialize(store, prefix = 'pfx') @store = store @prefix = prefix end |
Instance Attribute Details
#prefix ⇒ Object (readonly)
Returns the value of attribute prefix.
14 15 16 |
# File 'lib/prefixed_cache_store.rb', line 14 def prefix @prefix end |
#store ⇒ Object (readonly)
Returns the value of attribute store.
14 15 16 |
# File 'lib/prefixed_cache_store.rb', line 14 def store @store end |
Instance Method Details
#clear(options = nil) ⇒ Object
Bump the version prefix making all keys obsolete.
74 75 76 77 78 |
# File 'lib/prefixed_cache_store.rb', line 74 def clear(=nil) bump_version! # First bump the version @last_prefix = nil # Then make sure the cached version number will not be used get_and_set_current_version end |
#decrement(name, amount = 1, options = nil) ⇒ Object
Decrement a cached value.
69 70 71 |
# File 'lib/prefixed_cache_store.rb', line 69 def decrement(name, amount = 1, =nil) @store.decrement(prefix_key(name), amount, ) end |
#delete(name, options = nil) ⇒ Object
47 48 49 |
# File 'lib/prefixed_cache_store.rb', line 47 def delete(name, =nil) @store.delete(prefix_key(name), ) end |
#exist?(name, options = nil) ⇒ Boolean
43 44 45 |
# File 'lib/prefixed_cache_store.rb', line 43 def exist?(name, =nil) @store.exist?(prefix_key(name), ) end |
#fetch(name, options = nil) ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/prefixed_cache_store.rb', line 27 def fetch(name, =nil) if block_given? @store.fetch(prefix_key(name), ) { yield } else @store.fetch(prefix_key(name), ) end end |
#increment(name, amount = 1, options = nil) ⇒ Object
Increment a cached value.
64 65 66 |
# File 'lib/prefixed_cache_store.rb', line 64 def increment(name, amount = 1, =nil) @store.increment(prefix_key(name), amount, ) end |
#read(name, options = nil) ⇒ Object
35 36 37 |
# File 'lib/prefixed_cache_store.rb', line 35 def read(name, =nil) @store.read(prefix_key(name), ) end |
#read_multi(*names) ⇒ Object
Reads multiple keys from the cache using a single call to the servers for all keys. Keys must be Strings.
53 54 55 56 57 58 59 60 61 |
# File 'lib/prefixed_cache_store.rb', line 53 def read_multi(*names) names. prefixed_names = names.map{|e| prefix_key(e) } result = @store.read_multi(*prefixed_names) # Unprefix the keys received result.inject({}) do |memo, (prefixed_key, value)| memo.merge(unprefix_key(prefixed_key) => value) end end |
#write(name, value, options = nil) ⇒ Object
39 40 41 |
# File 'lib/prefixed_cache_store.rb', line 39 def write(name, value, =nil) @store.write(prefix_key(name), value, ) end |