switchman 3.6.6 → 3.6.8
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/switchman/active_support/cache.rb +7 -5
- data/lib/switchman/r_spec_helper.rb +1 -0
- data/lib/switchman/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9c258da7abce6b4b34bb1dac83e352aeb4548776a34820969460c31b4c61674e
|
4
|
+
data.tar.gz: '0512961dad99c3041d461ed8e6e183a998d70cd4229712b7246099e8c408c139'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 494681d5982a2035e85f3058162a7864b1afc89df2c29ba0d95d99bc9408fabe23b4f762b706946152a3f5e983320bf0c2704c0cc66ad13367ae062c9d20843f
|
7
|
+
data.tar.gz: ce04f224bd153d4de41df5d2b8ec28b22c25e591eb6465ffcf6e8c1a5e831992981a6fc8c8e86130914ca5d91c6442c2b4335c76f374b61ae24bfc21ad838adc
|
@@ -22,12 +22,14 @@ module Switchman
|
|
22
22
|
|
23
23
|
def lookup_store(*store_options)
|
24
24
|
store = super
|
25
|
-
#
|
26
|
-
#
|
27
|
-
|
28
|
-
|
25
|
+
# must use the string name, otherwise it will try to auto-load the constant
|
26
|
+
# and we don't want to require redis in this file (since it's not a hard dependency)
|
27
|
+
# rubocop:disable Style/ClassEqualityComparison
|
28
|
+
if store.class.name == "ActiveSupport::Cache::RedisCacheStore" &&
|
29
|
+
!(::ActiveSupport::Cache::RedisCacheStore <= RedisCacheStore)
|
29
30
|
::ActiveSupport::Cache::RedisCacheStore.prepend(RedisCacheStore)
|
30
31
|
end
|
32
|
+
# rubocop:enable Style/ClassEqualityComparison
|
31
33
|
store.options[:namespace] ||= -> { Shard.current.default? ? nil : "shard_#{Shard.current.id}" }
|
32
34
|
store
|
33
35
|
end
|
@@ -36,7 +38,7 @@ module Switchman
|
|
36
38
|
module RedisCacheStore
|
37
39
|
def clear(namespace: nil, **)
|
38
40
|
# RedisCacheStore tries to be smart and only clear the cache under your namespace, if you have one set
|
39
|
-
# unfortunately, it
|
41
|
+
# unfortunately, it doesn't work using redis clustering because of the way redis keys are distributed
|
40
42
|
# fortunately, we can assume we control the entire instance, because we set up the namespacing, so just
|
41
43
|
# always unset it temporarily for clear calls
|
42
44
|
namespace = nil # rubocop:disable Lint/ShadowedArgument
|
data/lib/switchman/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: switchman
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.6.
|
4
|
+
version: 3.6.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Cody Cutrer
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2025-01-27 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activerecord
|