LEFT | RIGHT |
1 // Copyright 2011 The Go Authors. All rights reserved. | 1 // Copyright 2011 The Go Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style | 2 // Use of this source code is governed by a BSD-style |
3 // license that can be found in the LICENSE file. | 3 // license that can be found in the LICENSE file. |
4 | 4 |
5 // Package sql provides a generic interface around SQL (or SQL-like) | 5 // Package sql provides a generic interface around SQL (or SQL-like) |
6 // databases. | 6 // databases. |
7 // | 7 // |
8 // The sql package must be used in conjunction with a database driver. | 8 // The sql package must be used in conjunction with a database driver. |
9 // See http://golang.org/s/sqldrivers for a list of drivers. | 9 // See http://golang.org/s/sqldrivers for a list of drivers. |
10 package sql | 10 package sql |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 | 497 |
498 // SetMaxIdleConns sets the maximum number of connections in the idle | 498 // SetMaxIdleConns sets the maximum number of connections in the idle |
499 // connection pool. | 499 // connection pool. |
500 // | 500 // |
501 // If MaxOpenConns is greater than 0 but less than the new MaxIdleConns | 501 // If MaxOpenConns is greater than 0 but less than the new MaxIdleConns |
502 // then the new MaxIdleConns will be reduced to match the MaxOpenConns limit | 502 // then the new MaxIdleConns will be reduced to match the MaxOpenConns limit |
503 // | 503 // |
504 // If n <= 0, no idle connections are retained. | 504 // If n <= 0, no idle connections are retained. |
505 func (db *DB) SetMaxIdleConns(n int) { | 505 func (db *DB) SetMaxIdleConns(n int) { |
506 db.mu.Lock() | 506 db.mu.Lock() |
507 defer db.mu.Unlock() | |
508 if n > 0 { | 507 if n > 0 { |
509 db.maxIdle = n | 508 db.maxIdle = n |
510 } else { | 509 } else { |
511 // No idle connections. | 510 // No idle connections. |
512 db.maxIdle = -1 | 511 db.maxIdle = -1 |
513 } | 512 } |
514 // Make sure maxIdle doesn't exceed maxOpen | 513 // Make sure maxIdle doesn't exceed maxOpen |
515 if db.maxOpen > 0 && db.maxIdleConnsLocked() > db.maxOpen { | 514 if db.maxOpen > 0 && db.maxIdleConnsLocked() > db.maxOpen { |
516 db.maxIdle = db.maxOpen | 515 db.maxIdle = db.maxOpen |
517 } | 516 } |
| 517 var closing []*driverConn |
518 for db.freeConn.Len() > db.maxIdleConnsLocked() { | 518 for db.freeConn.Len() > db.maxIdleConnsLocked() { |
519 dc := db.freeConn.Back().Value.(*driverConn) | 519 dc := db.freeConn.Back().Value.(*driverConn) |
520 dc.listElem = nil | 520 dc.listElem = nil |
521 db.freeConn.Remove(db.freeConn.Back()) | 521 db.freeConn.Remove(db.freeConn.Back()) |
522 » » go dc.Close() | 522 » » closing = append(closing, dc) |
| 523 » } |
| 524 » db.mu.Unlock() |
| 525 » for _, c := range closing { |
| 526 » » c.Close() |
523 } | 527 } |
524 } | 528 } |
525 | 529 |
526 // SetMaxOpenConns sets the maximum number of open connections to the database. | 530 // SetMaxOpenConns sets the maximum number of open connections to the database. |
527 // | 531 // |
528 // If MaxIdleConns is greater than 0 and the new MaxOpenConns is less than | 532 // If MaxIdleConns is greater than 0 and the new MaxOpenConns is less than |
529 // MaxIdleConns, then MaxIdleConns will be reduced to match the new | 533 // MaxIdleConns, then MaxIdleConns will be reduced to match the new |
530 // MaxOpenConns limit | 534 // MaxOpenConns limit |
531 // | 535 // |
532 // If n <= 0, then there is no limit on the number of open connections. | 536 // If n <= 0, then there is no limit on the number of open connections. |
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1652 var buf [2 << 10]byte | 1656 var buf [2 << 10]byte |
1653 return string(buf[:runtime.Stack(buf[:], false)]) | 1657 return string(buf[:runtime.Stack(buf[:], false)]) |
1654 } | 1658 } |
1655 | 1659 |
1656 // withLock runs while holding lk. | 1660 // withLock runs while holding lk. |
1657 func withLock(lk sync.Locker, fn func()) { | 1661 func withLock(lk sync.Locker, fn func()) { |
1658 lk.Lock() | 1662 lk.Lock() |
1659 fn() | 1663 fn() |
1660 lk.Unlock() | 1664 lk.Unlock() |
1661 } | 1665 } |
LEFT | RIGHT |