NewFromSelector returns a new Client using the provided ServerSelector.
(ss ServerSelector)
| 127 | |
| 128 | // NewFromSelector returns a new Client using the provided ServerSelector. |
| 129 | func NewFromSelector(ss ServerSelector) *Client { |
| 130 | return &Client{selector: ss} |
| 131 | } |
| 132 | |
| 133 | // Client is a memcache client. |
| 134 | // It is safe for unlocked use by multiple concurrent goroutines. |
no outgoing calls
no test coverage detected
searching dependent graphs…