aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
Commit message (Expand)AuthorAgeFilesLines
* introduce a timer class for reaping connectionsAaron Patterson2011-12-301-0/+19
* raise a pull full error when the connection pool is full and no connection ca...Aaron Patterson2011-12-301-18/+20
* connections are only removed if they are inactveAaron Patterson2011-12-301-1/+1
* connections can be reaped via the `reap` methodAaron Patterson2011-12-301-0/+12
* deal with removing connections associated with the current threadAaron Patterson2011-12-301-0/+7
* connections can be removed from the poolAaron Patterson2011-12-301-1/+9
* queue and signal no longer neededAaron Patterson2011-12-301-2/+0
* refactor checking out the connectionAaron Patterson2011-12-301-5/+6
* infinite loop is no longer necessaryAaron Patterson2011-12-301-20/+11
* connections must be checked in at the end of a threadAaron Patterson2011-12-301-17/+1
* Support establishing connection on ActiveRecord::Model.Jon Leighton2011-12-281-1/+1
* Extract common logic into a methodJon Leighton2011-12-241-6/+1
* I herd you like modules.Jon Leighton2011-12-241-1/+6
* removing deprecated methodsAaron Patterson2011-12-211-28/+0
* push synchronization in to each method. Reduces method calls and makesAaron Patterson2011-11-291-25/+29
* Automatic closure of connections in threads is deprecated. For exampleAaron Patterson2011-11-291-1/+7
* AbstractAdapter#close can be called to add the connection back to theAaron Patterson2011-11-291-0/+1
* Start implementing @reserved_connections in terms of connection leases.Aaron Patterson2011-11-291-3/+3
* Rename `checked_out` to more descriptive `active_connections`Aaron Patterson2011-11-291-3/+3
* Use connection lease to determine "checked_out" connectionsAaron Patterson2011-11-291-17/+21
* remove unused instance variableAaron Patterson2011-11-281-1/+0
* just check in all connectionsAaron Patterson2011-11-281-6/+2
* pools are 1:1 with spec now rather than 1:1 with classAaron Patterson2011-11-281-3/+6
* oops! I suck! :bomb:Aaron Patterson2011-11-201-1/+0
* pushing caching and visitors down to the connectionAaron Patterson2011-11-191-77/+31
* Fix pull request #3609Noé Froidevaux2011-11-131-1/+1
* Prevent multiple SHOW TABLES calls when a table don't exists in database.Noé Froidevaux2011-11-111-3/+3
* use thread locals and an instance variable within QueryCache#BodyProxy to mai...Mark J. Titorenko2011-10-071-1/+1
* Merge pull request #2897 from rsutphin/ar31-remove_connectionAaron Patterson2011-09-061-1/+1
* Make it the responsibility of the connection to hold onto an ARel visitor for...Jon Leighton2011-08-081-4/+15
* cache column defaults for AR object instantiationAaron Patterson2011-06-271-0/+9
* Fix inconsistencies by being polite to the wrapped body. Needed for Rack::Sen...Steve Hodgkiss2011-06-181-0/+8
* Allow the connection pool's #table_exists? method to give the connections #ta...Ken Collins2011-06-101-0/+1
* Merge branch 'master' of git://github.com/lifo/docrailsXavier Noria2011-05-251-1/+1
|\
| * Remove extra white spaces on ActiveRecord docs.Sebastian Martinez2011-05-231-1/+1
* | Remove extra white-space on some exception messages.Sebastian Martinez2011-05-231-1/+1
|/
* Fixed punctuation errors.Sebastian Martinez2011-04-221-4/+4
* make sure that active connections are not cleared during test when an excepti...Aaron Patterson2011-03-291-2/+4
* clearing active connections in the ConnectionManagement middleware if an exce...Aaron Patterson2011-03-291-0/+3
* proxy body responses so we close database connections after body is flushedAaron Patterson2011-03-291-7/+24
* adding active_connections? to the connection pool for finding open connectionsAaron Patterson2011-03-281-0/+6
* adding active_connection? to the connection poolAaron Patterson2011-03-281-0/+6
* primary keys should not be cleared on cache clear, fixing oracle testsAaron Patterson2011-02-081-2/+0
* the connection pool caches table_exists? callsAaron Patterson2011-02-071-8/+14
* adjust query counts to be consistent across databases, make sure database log...Aaron Patterson2011-02-041-5/+9
* column cache now lives on the connection poolAaron Patterson2011-02-041-1/+5
* almost fistedAaron Patterson2011-02-041-0/+7
* making sure primary key is set on the columnsAaron Patterson2011-02-041-1/+9
* connection pool can cache column, table, and primary key informationAaron Patterson2011-02-041-0/+34
* Use run_callbacks; the generated _run_<name>_callbacks method is not a public...John Firebaugh2011-01-311-1/+1