(rw *bufio.ReadWriter, item *Item)
| 624 | } |
| 625 | |
| 626 | func (c *Client) replace(rw *bufio.ReadWriter, item *Item) error { |
| 627 | return c.populateOne(rw, "replace", item) |
| 628 | } |
| 629 | |
| 630 | // Append appends the given item to the existing item, if a value already |
| 631 | // exists for its key. ErrNotStored is returned if that condition is not met. |
nothing calls this directly
no test coverage detected