Module: Switchman::ActiveSupport::Cache::ClassMethods

Defined in:
lib/switchman/active_support/cache.rb

Instance Method Summary collapse

Instance Method Details

#lookup_store(*store_options) ⇒ Object



5
6
7
8
9
10
11
12
13
14
# File 'lib/switchman/active_support/cache.rb', line 5

def lookup_store(*store_options)
  store = super
  # can't use defined?, because it's a _ruby_ autoloaded constant,
  # so just checking that will cause it to get required
  if store.class.name == "ActiveSupport::Cache::RedisCacheStore" && !::ActiveSupport::Cache::RedisCacheStore.ancestors.include?(RedisCacheStore)
    ::ActiveSupport::Cache::RedisCacheStore.prepend(RedisCacheStore)
  end
  store.options[:namespace] ||= lambda { Shard.current.default? ? nil : "shard_#{Shard.current.id}" }
  store
end