class method
self.ensure_connection_pool_added!
Ruby on Rails 6.1.7.10
Since v5.2.8.1 Last seen in v7.0.10 Private — implementation detail, not part of the public APISignature
self.ensure_connection_pool_added!()
No documentation comment.
Source
# File activesupport/lib/active_support/cache.rb, line 183
def ensure_connection_pool_added!
require "connection_pool"
rescue LoadError => e
$stderr.puts "You don't have connection_pool installed in your application. Please add it to your Gemfile and run bundle install"
raise e
end
Defined in activesupport/lib/active_support/cache.rb line 183
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveSupport::Cache::Store