method

ensure_connection_pool_added!

ensure_connection_pool_added!()
private

No documentation available.

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