예제 #1
0
파일: connpool.go 프로젝트: ptt/pttweb
func (m *MemcacheConnPool) DropConn(c *memcache.Connection) {
	m.drop <- nil
	if c != nil {
		c.Close()
	}
}