MCPcopy Create free account
hub / github.com/bradfitz/gomemcache / conn

Struct conn

memcache/memcache.go:187–192  ·  view source on GitHub ↗

conn is a connection to a server.

Source from the content-addressed store, hash-verified

185
186// conn is a connection to a server.
187type conn struct {
188 nc net.Conn
189 rw *bufio.ReadWriter
190 addr net.Addr
191 c *Client
192}
193
194// release returns this connection back to the client's free pool
195func (cn *conn) release() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected