示例#1
0
文件: connpool.go 项目: ptt/pttweb
func (m *MemcacheConnPool) DropConn(c *memcache.Connection) {
	m.drop <- nil
	if c != nil {
		c.Close()
	}
}