redis-hash 0.0.4 → 0.0.5
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/Gemfile.lock +1 -1
- data/lib/redis_hash.rb +9 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fb0efcb0893f43a21cfc4f3de01007b68a3e020b
|
4
|
+
data.tar.gz: 04d74c8e49327e375f95ffdcc7469c82acfaf7bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9b1985397afe956ef61fd016d6e815addecfae700e8a734655857494626ca040863d0a45476696e1c976929d9de828a7b3c17836984e07503f3dc2c9a444bc16
|
7
|
+
data.tar.gz: 4300ed544e9eca61f0800652dc958f4095f0e0a8e3447b4a741cdf952a95f1f10b4243526f939e591f57f1d3e0ce12c0cafd79fec5b14e1535dffbbaf6c6f224
|
data/Gemfile.lock
CHANGED
data/lib/redis_hash.rb
CHANGED
@@ -3,12 +3,12 @@ require "redis"
|
|
3
3
|
class RedisHash
|
4
4
|
attr_reader :name
|
5
5
|
|
6
|
-
VERSION = "0.0.
|
6
|
+
VERSION = "0.0.5"
|
7
7
|
|
8
8
|
class InvalidNameException < StandardError; end;
|
9
9
|
class InvalidRedisConfigException < StandardError; end;
|
10
10
|
|
11
|
-
def initialize(name, redis_or_options = {})
|
11
|
+
def initialize(name, redis_or_options = {}, more_options = {})
|
12
12
|
name = name.to_s if name.kind_of? Symbol
|
13
13
|
|
14
14
|
raise InvalidNameException.new unless name.kind_of?(String) && name.size > 0
|
@@ -18,14 +18,18 @@ class RedisHash
|
|
18
18
|
elsif redis_or_options.kind_of? Hash
|
19
19
|
::Redis.new redis_or_options
|
20
20
|
elsif defined?(ActiveSupport::Cache::RedisStore) && redis_or_options.kind_of?(ActiveSupport::Cache::RedisStore)
|
21
|
-
|
21
|
+
@pooled = redis_or_options.data.kind_of?(ConnectionPool)
|
22
22
|
redis_or_options.data
|
23
23
|
elsif defined?(ConnectionPool) && redis_or_options.kind_of?(ConnectionPool)
|
24
|
-
|
25
|
-
|
24
|
+
@pooled = true
|
25
|
+
redis_or_options
|
26
26
|
else
|
27
27
|
raise InvalidRedisConfigException.new
|
28
28
|
end
|
29
|
+
|
30
|
+
if more_options.kind_of?(Hash) && more_options[:expire]
|
31
|
+
expire more_options[:expire]
|
32
|
+
end
|
29
33
|
end
|
30
34
|
|
31
35
|
def get *keys
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redis-hash
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Misha Conway
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-04-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|