soba3kofta-redis 0.0.0.pre7 → 0.0.0.pre8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/soba3kofta-redis/base.rb +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1e2cd2444042a745343ca10c569824d1733e35f8
|
4
|
+
data.tar.gz: 667f993af1bfd40c46d091888312d70c234e2535
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f738a6c3289ed0221980b9205b908e67cd8650fbac43386b5719973a8d569f78178c0bc1f01a2828fceee474f614d1b481bd544e4d72c63257c5f93a1a71950
|
7
|
+
data.tar.gz: 9ec671ab30a1fdc3eb74e45af0fa5e1c04fe2cfa6d70c6d11a77f9c7c4ad236d81dfff5b24223b0aaefe98fe5e1d8cfeeb4773a306a0d134ed303475b8174d63
|
@@ -35,11 +35,11 @@ module Soba3kofta
|
|
35
35
|
return Marshal.load @env
|
36
36
|
end
|
37
37
|
def DS.load id
|
38
|
-
return Marshal.load @@redis.get id
|
38
|
+
return Marshal.load @@redis.get id.to_s + 'soba3kofta'
|
39
39
|
end
|
40
40
|
|
41
41
|
def DS.exists? id
|
42
|
-
if (@@redis.get id) && (Marshal.load @@redis.get id)
|
42
|
+
if (@@redis.get id.to_s + 'soba3kofta') && (Marshal.load @@redis.get id.to_s + 'soba3kofta')
|
43
43
|
return true
|
44
44
|
else
|
45
45
|
return false
|