diff options
author | Xavier Noria <fxn@hashref.com> | 2012-02-26 12:51:13 -0800 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-02-26 12:51:13 -0800 |
commit | 5c0aba238c37a71fce08f949bc2c6bdd9aab4f7b (patch) | |
tree | 1f8848dcff5a24df0207a6d53e8635a416cc68d3 /railties/guides/source/command_line.textile | |
parent | 9b2c38b7bd582d9712c3779294a9bccde7bbd548 (diff) | |
download | rails-5c0aba238c37a71fce08f949bc2c6bdd9aab4f7b.tar.gz rails-5c0aba238c37a71fce08f949bc2c6bdd9aab4f7b.tar.bz2 rails-5c0aba238c37a71fce08f949bc2c6bdd9aab4f7b.zip |
updates the new default pool size in some additional places
Diffstat (limited to 'railties/guides/source/command_line.textile')
-rw-r--r-- | railties/guides/source/command_line.textile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/guides/source/command_line.textile b/railties/guides/source/command_line.textile index fe4a84dae9..8ae8c61ae6 100644 --- a/railties/guides/source/command_line.textile +++ b/railties/guides/source/command_line.textile @@ -521,7 +521,9 @@ development: adapter: postgresql encoding: unicode database: gitapp_development - pool: 5 + # Maximum number of database connections available per process. Please + # increase this number in multithreaded applications. + pool: 1 username: gitapp password: ... |