method

redis

rails latest stable - Class: ActiveSupport::Cache::RedisCacheStore

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v7.0.0) is shown here.

redis()
public

No documentation available.

# File activesupport/lib/active_support/cache/redis_cache_store.rb, line 155
      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