Skip to content

Instantly share code, notes, and snippets.

@jcalvert
Created March 5, 2012 22:05
Show Gist options
  • Save jcalvert/1981466 to your computer and use it in GitHub Desktop.
Save jcalvert/1981466 to your computer and use it in GitHub Desktop.
AR Sinatra filters
before do
request[:connection] = ActiveRecord::Base.connection_pool.checkout
end
after do
ActiveRecord::Base.connection_pool.checkin(request[:connection]) if request[:connection]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment