File tree 2 files changed +12
-9
lines changed
2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def hash_snapshot= (timestamp)
35
35
end
36
36
37
37
def redis_snapshot
38
- timestamp = Lit . redis . get ( 'lit: _snapshot')
38
+ timestamp = Lit . redis . get ( Lit . prefix + ' _snapshot')
39
39
if timestamp . nil?
40
40
timestamp = Time . current . to_s
41
41
Lit . redis_snapshot = timestamp
@@ -44,13 +44,21 @@ def redis_snapshot
44
44
end
45
45
46
46
def redis_snapshot = ( timestamp )
47
- Lit . redis . set ( 'lit: _snapshot', timestamp )
47
+ Lit . redis . set ( Lit . prefix + ' _snapshot', timestamp )
48
48
end
49
49
50
50
def determine_redis_provider
51
51
ENV [ ENV [ 'REDIS_PROVIDER' ] || 'REDIS_URL' ]
52
52
end
53
53
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
+
54
62
class HybridStorage
55
63
def initialize
56
64
Lit . redis
@@ -131,11 +139,7 @@ def sort
131
139
private
132
140
133
141
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
139
143
end
140
144
141
145
def _prefixed_key ( key = '' )
Original file line number Diff line number Diff line change 1
1
require 'lit/adapters/hybrid_storage'
2
2
def clear_snapshots
3
- trace_var :$_hash , proc { |h | print 'hash is now' , v }
4
3
Lit . reset_hash if defined? ( $_hash)
5
4
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)
7
6
end
You can’t perform that action at this time.
0 commit comments