aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/configuring.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-04-30 17:59:12 +0200
committerYves Senn <yves.senn@gmail.com>2013-04-30 17:59:12 +0200
commitd2fe72345aeea2a0874dfe5c665368b9fd543bcb (patch)
tree7eb7c9399107c7fa1ba53443b5f664fb537b3353 /guides/source/configuring.md
parent887225e69b6cdd27f00cf043c4ac918ca5e18cbf (diff)
downloadrails-d2fe72345aeea2a0874dfe5c665368b9fd543bcb.tar.gz
rails-d2fe72345aeea2a0874dfe5c665368b9fd543bcb.tar.bz2
rails-d2fe72345aeea2a0874dfe5c665368b9fd543bcb.zip
it's Active Record not ActiveRecord
/cc @fxn
Diffstat (limited to 'guides/source/configuring.md')
-rw-r--r--guides/source/configuring.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/configuring.md b/guides/source/configuring.md
index df3d22debe..e253d639d4 100644
--- a/guides/source/configuring.md
+++ b/guides/source/configuring.md
@@ -729,7 +729,7 @@ development:
timeout: 5000
```
-Since the connection pooling is handled inside of ActiveRecord by default, all application servers (Thin, mongrel, Unicorn etc.) should behave the same. Initially, the database connection pool is empty and it will create additional connections as the demand for them increases, until it reaches the connection pool limit.
+Since the connection pooling is handled inside of Active Record by default, all application servers (Thin, mongrel, Unicorn etc.) should behave the same. Initially, the database connection pool is empty and it will create additional connections as the demand for them increases, until it reaches the connection pool limit.
Any one request will check out a connection the first time it requires access to the database, after which it will check the connection back in, at the end of the request, meaning that the additional connection slot will be available again for the next request in the queue.