()
| 70 | } |
| 71 | |
| 72 | func (c *Cache) init() { |
| 73 | c.items = make(map[uint64]*list.Element) |
| 74 | c.keys = list.New() |
| 75 | } |
| 76 | |
| 77 | // Read attempts to retrieve a cached value as a string, if the value does not |
| 78 | // exists returns an empty string and false. |
no test coverage detected