instance method
redis
Ruby on Rails 7.0.10
Since v5.2.8.1 Last seen in v7.0.10Signature
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