Created
June 8, 2015 12:09
-
-
Save deankarn/796e2dff57e5d210cb2d to your computer and use it in GitHub Desktop.
Long lived, concurrent safe pools made with buffered channels
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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