See Client interface for documentation.
(key string)
| 333 | |
| 334 | // See Client interface for documentation. |
| 335 | func (c *RawBinaryClient) Get(key string) GetResponse { |
| 336 | c.mutex.Lock() |
| 337 | defer c.mutex.Unlock() |
| 338 | |
| 339 | if resp := c.sendGetRequest(key); resp != nil { |
| 340 | return resp |
| 341 | } |
| 342 | |
| 343 | return c.receiveGetResponse(key) |
| 344 | } |
| 345 | |
| 346 | func (c *RawBinaryClient) removeDuplicateKey(keys []string) []string { |
| 347 | keyMap := make(map[string]interface{}) |
nothing calls this directly
no test coverage detected