aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/connection_adapters/abstract/connection_pool.rb
Commit message (Expand)AuthorAgeFilesLines
* Make connection pool retrieval fasterJon Leighton2012-08-311-10/+13
* Simplify AR configuration code.Jon Leighton2012-06-151-6/+8
* Make connection pool fair with respect to waiting threads.Patrick Mahoney2012-05-251-37/+174
* Whitespaces :scissors:Rafael Mendonça França2012-05-231-6/+6
* ConnectionPool wait_timeout no longer used for different types of timeouts. #...Jonathan Rochkind2012-05-231-7/+16
* Revert "Merge pull request #6416 from pmahoney/threadsafe-connection-pool"Rafael Mendonça França2012-05-221-86/+34
* Make connection pool fair with respect to waiting threads.Patrick Mahoney2012-05-201-34/+86
* Synchronize read and modification of @reserved_connections hash to avoid conc...Patrick Mahoney2012-05-191-4/+8
* Remove unused assignmentsMark Rushakoff2012-04-291-5/+3
* opening a connection will block if the pool is fullAaron Patterson2012-04-151-20/+39
* make sure connections returned after close are marked as in_useAaron Patterson2012-03-121-4/+17
* deprecated clear_stale_active_connections! can call #reap instead of no-op'in...Jonathan Rochkind2012-03-121-1/+2
* make active_connection? return true only if there is an open connection in us...Aaron Patterson2012-03-081-7/+4
* removes verify_active_connections!Xavier Noria2012-02-241-15/+0
* use Process.pid rather than $$Aaron Patterson2012-02-161-5/+5
* database connections are automatically established after forking.Aaron Patterson2012-02-161-13/+47
* use Rack::BodyProxy in activerecord middlewaresSergey Nartimov2012-01-161-31/+5
* updating the reaping frequency documentationAaron Patterson2011-12-301-0/+3
* rename start to run and use Thread.pass rather than sleeping to schedule the ...Aaron Patterson2011-12-301-2/+2
* connection pool starts the reaperAaron Patterson2011-12-301-0/+1
* each connection pool has a reaperAaron Patterson2011-12-301-1/+5
* 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