aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/code/getting_started/config/database.yml
Commit message (Collapse)AuthorAgeFilesLines
* Revert "let the connection pool of new applications have size 1 rather than 5"Xavier Noria2012-03-071-9/+3
| | | | | | | Reason: Temporarily reverting this because it has uncovered an issue that prevents Sam's test suite from passing. This reverts commit 9b2c38b7bd582d9712c3779294a9bccde7bbd548.
* let the connection pool of new applications have size 1 rather than 5Xavier Noria2012-02-261-3/+9
| | | | | | | | | The majority of Rails applications are multiprocess, people may wonder why rails new generates a default pool of 5, does my application need a connection pool of 5? By generating a default of 1 database.yml is much more clear, and with the comment people know what is the connection pool for, and they know it has to be bigger for multithread apps.
* Added getting_started code, updated guide with link to rails github repo and ↵James Gifford2011-09-121-0/+25
path to code