How are connections to mysql handled in Rails 3?
Do multiple connections to the website share the same mysql connection, or does it take a connection from a connection pool and then release it once the request has closed all connections to mysql?
If there are 10 front end servers all hitting a single db server, are there any issues here?
I' using Phusion passenger if that effects anything.