Get retrieves the cached version of the list associated with the given key.
(key []byte)
| 387 | |
| 388 | // Get retrieves the cached version of the list associated with the given key. |
| 389 | func (lc *LocalCache) Get(key []byte) (*List, error) { |
| 390 | return lc.getInternal(key, true, false) |
| 391 | } |
| 392 | |
| 393 | func (lc *LocalCache) GetUids(key []byte) (*List, error) { |
| 394 | return lc.getInternal(key, true, true) |