Skip to content

Commit 1a6cacb

Browse files
Properly prefix redis snapshot key
1 parent 29ff09c commit 1a6cacb

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

lib/lit/adapters/hybrid_storage.rb

+11-7
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def hash_snapshot= (timestamp)
3535
end
3636

3737
def redis_snapshot
38-
timestamp = Lit.redis.get('lit:_snapshot')
38+
timestamp = Lit.redis.get(Lit.prefix + '_snapshot')
3939
if timestamp.nil?
4040
timestamp = Time.current.to_s
4141
Lit.redis_snapshot = timestamp
@@ -44,13 +44,21 @@ def redis_snapshot
4444
end
4545

4646
def redis_snapshot= (timestamp)
47-
Lit.redis.set('lit:_snapshot', timestamp)
47+
Lit.redis.set(Lit.prefix + '_snapshot', timestamp)
4848
end
4949

5050
def determine_redis_provider
5151
ENV[ENV['REDIS_PROVIDER'] || 'REDIS_URL']
5252
end
5353

54+
def prefix
55+
pfx = 'lit:'
56+
if Lit.storage_options.is_a?(Hash)
57+
pfx += "#{Lit.storage_options[:prefix]}:" if Lit.storage_options.key?(:prefix)
58+
end
59+
pfx
60+
end
61+
5462
class HybridStorage
5563
def initialize
5664
Lit.redis
@@ -131,11 +139,7 @@ def sort
131139
private
132140

133141
def _prefix
134-
prefix = 'lit:'
135-
if Lit.storage_options.is_a?(Hash)
136-
prefix += "#{Lit.storage_options[:prefix]}:" if Lit.storage_options.key?(:prefix)
137-
end
138-
prefix
142+
Lit.prefix
139143
end
140144

141145
def _prefixed_key(key = '')

test/support/clear_snapshots.rb

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
require 'lit/adapters/hybrid_storage'
22
def clear_snapshots
3-
trace_var :$_hash, proc { |h| print 'hash is now', v }
43
Lit.reset_hash if defined?($_hash)
54
Lit.hash_snapshot = nil if defined?($_hash_snapshot)
6-
Lit.redis.del('lit:_snapshot') if defined?($redis)
5+
Lit.redis.del(Lit.prefix + '_snapshot') if defined?($redis)
76
end

0 commit comments

Comments
 (0)