1. 06 9月, 2012 1 次提交
  2. 31 8月, 2012 4 次提交
  3. 16 6月, 2012 1 次提交
  4. 26 5月, 2012 1 次提交
    • P
      Make connection pool fair with respect to waiting threads. · 02b23355
      Patrick Mahoney 提交于
      The core of this fix is a threadsafe, fair Queue class.  It is
      very similar to Queue in stdlib except that it supports waiting
      with a timeout.
      
      The issue this solves is that if several threads are contending for
      database connections, an unfair queue makes is possible that a thread
      will timeout even while other threads successfully acquire and release
      connections.  A fair queue means the thread that has been waiting the
      longest will get the next available connection.
      
      This includes a few test fixes to avoid test ordering issues that
      cropped up during development of this patch.
      02b23355
  5. 24 5月, 2012 2 次提交
    • R
      Whitespaces · 82b05fbc
      Rafael Mendonça França 提交于
      82b05fbc
    • J
      ConnectionPool wait_timeout no longer used for different types of timeouts. #6441 · cb6f8393
      Jonathan Rochkind 提交于
      An AR ConnectionSpec `wait_timeout` is pre-patch used for three
      different things:
      
      * mysql2 uses it for MySQL's own wait_timeout (how long MySQL
        should allow an idle connection before closing it), and
        defaults to 2592000 seconds.
      * ConnectionPool uses it for "number of seconds to block and
        wait for a connection before giving up and raising a timeout error",
        default 5 seconds.
      * ConnectionPool uses it for the Reaper, for deciding if a 'dead'
        connection can be reaped. Default 5 seconds.
      
      Previously, if you want to change these from defaults, you need
      to change them all together. This is problematic _especially_
      for the mysql2/ConnectionPool conflict, you will generally _not_
      want them to be the same, as evidenced by their wildly different
      defaults. This has caused real problems for people #6441 #2894
      
      But as long as we're changing this, forcing renaming the
      ConnectionPool key to be more specific, it made sense
      to seperate the two ConnectionPool uses too -- these two
      types of ConnectionPool timeouts ought to be able to be
      changed independently, you won't neccesarily want them
      to be the same, even though the defaults are (currently)
      the same.
      cb6f8393
  6. 23 5月, 2012 1 次提交
  7. 21 5月, 2012 1 次提交
  8. 20 5月, 2012 1 次提交
  9. 30 4月, 2012 1 次提交
  10. 16 4月, 2012 1 次提交
  11. 13 3月, 2012 1 次提交
  12. 12 3月, 2012 1 次提交
  13. 09 3月, 2012 1 次提交
  14. 25 2月, 2012 1 次提交
    • X
      removes verify_active_connections! · 9d1f1b1e
      Xavier Noria 提交于
      The method verify_active_connections! was used in
      the old days (up to 2.1 I think) by the dispatcher
      to verify the connections, but nowadays we do that
      in a different way and this method is obsolete.
      9d1f1b1e
  15. 17 2月, 2012 2 次提交
  16. 16 1月, 2012 1 次提交
  17. 31 12月, 2011 14 次提交
  18. 29 12月, 2011 1 次提交
  19. 24 12月, 2011 2 次提交
  20. 22 12月, 2011 1 次提交
  21. 30 11月, 2011 1 次提交