1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-18 22:17:44 +02:00

Make pool configurable

This commit is contained in:
Asim
2016-06-07 00:46:14 +01:00
parent 38a66817e6
commit 89401cbb95
5 changed files with 67 additions and 14 deletions

View File

@ -1,6 +1,7 @@
package client
import (
"fmt"
"sync"
"time"
@ -8,7 +9,8 @@ import (
)
type pool struct {
tr transport.Transport
size int
ttl int64
sync.Mutex
conns map[string][]*poolConn
@ -19,15 +21,10 @@ type poolConn struct {
created int64
}
var (
// only hold on to this many conns
maxIdleConn = 2
// only hold on to the conn for this period
maxLifeTime = int64(60)
)
func newPool() *pool {
func newPool(size int, ttl time.Duration) *pool {
return &pool{
size: size,
ttl: int64(ttl.Seconds()),
conns: make(map[string][]*poolConn),
}
}
@ -50,7 +47,7 @@ func (p *pool) getConn(addr string, tr transport.Transport, opts ...transport.Di
p.conns[addr] = conns
// if conn is old kill it and move on
if d := now - conn.created; d > maxLifeTime {
if d := now - conn.created; d > p.ttl {
conn.Client.Close()
continue
}
@ -58,11 +55,14 @@ func (p *pool) getConn(addr string, tr transport.Transport, opts ...transport.Di
// we got a good conn, lets unlock and return it
p.Unlock()
fmt.Println("old conn")
return conn, nil
}
p.Unlock()
fmt.Println("new conn")
// create new conn
c, err := tr.Dial(addr, opts...)
if err != nil {
@ -81,7 +81,7 @@ func (p *pool) release(addr string, conn *poolConn, err error) {
// otherwise put it back for reuse
p.Lock()
conns := p.conns[addr]
if len(conns) >= maxIdleConn {
if len(conns) >= p.size {
p.Unlock()
conn.Client.Close()
return