instance method redis

Ruby on Rails 7.0.10

Since v5.2.8.1 Last seen in v7.0.10

Available in: v5.2.8.1 v6.0.6 v6.1.7.10 v7.0.10

Signature

redis()

No documentation comment.

Source
# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 161
      def redis
        @redis ||= begin
          pool_options = self.class.send(:retrieve_pool_options, redis_options)

          if pool_options.any?
            self.class.send(:ensure_connection_pool_added!)
            ::ConnectionPool.new(pool_options) { self.class.build_redis(**redis_options) }
          else
            self.class.build_redis(**redis_options)
          end
        end
      end

Defined in activesupport/lib/active_support/cache/redis_cache_store.rb line 161 · View on GitHub · Improve this page · Find usages on GitHub

Defined in ActiveSupport::Cache::RedisCacheStore

Type at least 2 characters to search.

↑↓ navigate · open · esc close