GetNoStore returns the list stored in the key or creates a new one if it doesn't exist. It does not store the list in any cache.
(key []byte, readTs uint64)
| 54 | // GetNoStore returns the list stored in the key or creates a new one if it doesn't exist. |
| 55 | // It does not store the list in any cache. |
| 56 | func GetNoStore(key []byte, readTs uint64) (rlist *List, err error) { |
| 57 | return getNew(key, pstore, readTs, false) |
| 58 | } |
| 59 | |
| 60 | // LocalCache stores a cache of posting lists and deltas. |
| 61 | // This doesn't sync, so call this only when you don't care about dirty posting lists in |