diff options
author | Xavier Noria <fxn@hashref.com> | 2012-03-07 22:46:06 +0100 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2012-03-07 22:46:06 +0100 |
commit | 73324fd830723022178fe87e42e081442846145b (patch) | |
tree | 9fd443d697ee61614fd478825318c53ff9d52b60 /railties/guides/source/getting_started.textile | |
parent | a149612c0b10bc71c98854aa07b0371bf7d8ac70 (diff) | |
download | rails-73324fd830723022178fe87e42e081442846145b.tar.gz rails-73324fd830723022178fe87e42e081442846145b.tar.bz2 rails-73324fd830723022178fe87e42e081442846145b.zip |
Revert "updates the new default pool size in some additional places"
Reason: We are about to temporarily revert the change to the default.
This reverts commit 5c0aba238c37a71fce08f949bc2c6bdd9aab4f7b.
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r-- | railties/guides/source/getting_started.textile | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index d6f3c3e217..bed14ef6a8 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -329,9 +329,7 @@ environment: development: adapter: sqlite3 database: db/development.sqlite3 - # Maximum number of database connections available per process. Please - # increase this number in multithreaded applications. - pool: 1 + pool: 5 timeout: 5000 </yaml> @@ -352,9 +350,7 @@ development: adapter: mysql2 encoding: utf8 database: blog_development - # Maximum number of database connections available per process. Please - # increase this number in multithreaded applications. - pool: 1 + pool: 5 username: root password: socket: /tmp/mysql.sock @@ -374,9 +370,7 @@ development: adapter: postgresql encoding: unicode database: blog_development - # Maximum number of database connections available per process. Please - # increase this number in multithreaded applications. - pool: 1 + pool: 5 username: blog password: </yaml> |