aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
Commit message (Collapse)AuthorAgeFilesLines
...
* Handle connection timeouts with a slightly nicer error message.Michael Koziarski2008-09-041-1/+1
|
* Default connection allow_concurrency to false (for PostgreSQL)Nick Sieger2008-09-041-2/+1
| | | | Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
* Deprecate verification_timeout and verify before resetNick Sieger2008-09-041-4/+2
| | | | Signed-off-by: Michael Koziarski <michael@koziarski.com>
* Minor tweak to retrieve_connection_pool -- recurse instead of loopNick Sieger2008-08-291-6/+4
|
* Remove some synchronization that's probably overkill, assuming one doesn't ↵Nick Sieger2008-08-291-10/+1
| | | | establish connections frequently
* Collapse connection pool class hierarchy; YAGNI.Nick Sieger2008-08-291-112/+48
| | | | | - Add connection checkin and checkout callbacks to adapter to allow adapter-specific customization of behavior (e.g., JRuby w/ JNDI)
* Make clear_active_connections! also return stale connections back to the poolNick Sieger2008-08-291-30/+23
| | | | - also clean up some cruft remaining from per-thread connection cache
* Remove CachedConnectionPerThread per-thread pooling mechanism in favor of a ↵Nick Sieger2008-08-291-17/+4
| | | | fixed pool with default maximum of 5 connections
* Deprecate allow_concurrency and make it have no effectNick Sieger2008-08-291-20/+5
|
* Add connection reset and verification upon each connection checkoutNick Sieger2008-08-291-2/+7
|
* Fix typo: was using brackets instead of parens. Must need more sleep.Nick Sieger2008-08-291-1/+1
|
* Favor existing connections over new ones if availableNick Sieger2008-08-291-3/+3
|
* More doco and class/method renames. Now have a strategy for integration with ↵Nick Sieger2008-08-291-24/+39
| | | | ActionPack.
* Fix checkin method, add a couple more testsNick Sieger2008-08-291-1/+1
|
* Nearing the finish line. Initial fixed-size connection pool implemented, ↵Nick Sieger2008-08-291-22/+116
| | | | more docs
* Clean up the code, get rid of reserve/release, add some more docsNick Sieger2008-08-291-34/+51
|
* Extract a base class for connection pools, start to flesh out ↵Nick Sieger2008-08-291-84/+105
| | | | reserve/release API
* Split connection handler into single- and multiple-thread versions.Nick Sieger2008-08-291-26/+40
|
* Connection handling methods extracted out into separate ConnectionHandler classNick Sieger2008-08-291-0/+89
| | | | - delegating methods left behind
* Fix failure to retain value of allow_concurrencyNick2008-08-291-1/+2
| | | | | - Also carry allow_concurrency value through to connection adapter (for postgresql)
* Add synchronization to connection pool alsoNick2008-08-291-3/+11
|
* Introduce synchronization around connection pool accessNick2008-08-291-8/+7
| | | | | | - use new active support Module#synchronize - allow_concurrency now switches between a null monitor and a regular monitor (defaulting to null monitor to avoid overhead)
* Initial conversion to connection poolNick2008-08-291-0/+128
So far so good, tests still run clean. Next steps: synchronize connection pool access and modification, and change allow_concurrency to simply switch a real lock for a null lock.