up vote 0 down vote favorite
1
share [g+] share [fb]

If my Rails application has the database pool size set to 5 (the default) in my database.yml file, and I'm running using Phusion Passenger, does that mean that there may be up to 5 database connections for each process that Passenger spawns, or is it 5 total across all processes?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

The pool size applies to one ruby process. Some ruby interpreters can use threading to handle multiple requests, like jRuby. The pool size applies for that one process and all threads.

Passenger does not use threading, but instead creates new ruby processes.

link|improve this answer
This actually depends on how passenger is configured to spawn rails applications. By default all connections in the pool are shared over all rails processes. That means all 5 connections are shared among all processes. stackoverflow.com/questions/2200586/… – Horacio Jul 22 '11 at 9:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.