(key []byte)
| 391 | } |
| 392 | |
| 393 | func (lc *LocalCache) GetUids(key []byte) (*List, error) { |
| 394 | return lc.getInternal(key, true, true) |
| 395 | } |
| 396 | |
| 397 | // GetFromDelta gets the cached version of the list without reading from disk |
| 398 | // and only applies the existing deltas. This is used in situations where the |
nothing calls this directly
no test coverage detected