(data []byte)
| 25 | type Updater func(value []byte, found bool) (newValue []byte, replace bool, expireSeconds int) |
| 26 | |
| 27 | func hashFunc(data []byte) uint64 { |
| 28 | return xxhash.Sum64(data) |
| 29 | } |
| 30 | |
| 31 | // NewCache returns a newly initialize cache by size. |
| 32 | // The cache size will be set to 512KB at minimum. |
no outgoing calls
searching dependent graphs…