class ActiveSupport::Cache::Store

def ensure_connection_pool_added!

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