jruby-hazelcast-store 0.2.0 → 0.3.0
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.
- data/VERSION +1 -1
- data/jruby-hazelcast-store.gemspec +1 -1
- data/lib/jruby-hazelcast-store.rb +0 -5
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.3.0
|
@@ -18,7 +18,6 @@ module ActiveSupport
|
|
18
18
|
end
|
19
19
|
|
20
20
|
def read_entry(key, options = nil)
|
21
|
-
super
|
22
21
|
@cache.get(key)
|
23
22
|
rescue CacheException => e
|
24
23
|
logger.error("HazelcastCacheStore Creation Error (#{e}): #{e.message}")
|
@@ -26,7 +25,6 @@ module ActiveSupport
|
|
26
25
|
end
|
27
26
|
|
28
27
|
def write_entry(key, value, options = nil)
|
29
|
-
super
|
30
28
|
@data.put(key, value, options)
|
31
29
|
true
|
32
30
|
rescue CacheException => e
|
@@ -35,7 +33,6 @@ module ActiveSupport
|
|
35
33
|
end
|
36
34
|
|
37
35
|
def delete_entry(key, options = nil)
|
38
|
-
super
|
39
36
|
@data.evict(key)
|
40
37
|
rescue CacheException => e
|
41
38
|
logger.error("HazelcastCacheStore Creation Error (#{e}): #{e.message}")
|
@@ -43,7 +40,6 @@ module ActiveSupport
|
|
43
40
|
end
|
44
41
|
|
45
42
|
def keys
|
46
|
-
super
|
47
43
|
raise "Not supported by HazelcastCacheClient"
|
48
44
|
end
|
49
45
|
|
@@ -55,7 +51,6 @@ module ActiveSupport
|
|
55
51
|
end
|
56
52
|
|
57
53
|
def delete_matched(matcher, options = nil)
|
58
|
-
super
|
59
54
|
raise "Not supported by HazelcastCacheClient"
|
60
55
|
end
|
61
56
|
|