(rw *bufio.ReadWriter, item *Item)
| 604 | } |
| 605 | |
| 606 | func (c *Client) set(rw *bufio.ReadWriter, item *Item) error { |
| 607 | return c.populateOne(rw, "set", item) |
| 608 | } |
| 609 | |
| 610 | // Add writes the given item, if no value already exists for its |
| 611 | // key. ErrNotStored is returned if that condition is not met. |
nothing calls this directly
no test coverage detected