Skip to content

Instantly share code, notes, and snippets.

@deankarn
Created June 8, 2015 12:09
Show Gist options
  • Save deankarn/796e2dff57e5d210cb2d to your computer and use it in GitHub Desktop.
Save deankarn/796e2dff57e5d210cb2d to your computer and use it in GitHub Desktop.
Long lived, concurrent safe pools made with buffered channels
// Pool holds Clients.
type Pool struct {
pool chan *Client
}
// NewPool creates a new pool of Clients.
func NewPool(max int) *Pool {
return &Pool{
pool: make(chan *Client, max),
}
}
// Borrow a Client from the pool.
func (p *Pool) Borrow() *Client {
var c *Client
select {
case c = <-p.pool:
default:
c = newClient()
}
return c
}
// Return returns a Client to the pool.
func (p *Pool) Return(c *Client) {
select {
case p.pool <- c:
default:
// let it go, let it go...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment