Flowdock
method

build_redis_distributed_client

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: RedisCacheStore
build_redis_distributed_client(urls:, **redis_options) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 131
          def build_redis_distributed_client(urls,, **redis_options)
            ::Redis::Distributed.new([], DEFAULT_REDIS_OPTIONS.merge(redis_options)).tap do |dist|
              urls.each { |u| dist.add_node url: u }
            end
          end
Register or log in to add new notes.