github.com/cockroachdb/pebble@v1.1.2/objstorage/objstorageprovider/sharedcache/testdata/cache/compaction_reads (about) 1 init 2 ---- 3 initialized with block-size=32768 size=33554432 num-shards=32 4 5 write size=200000 6 ---- 7 8 read offset=1024 size=10000 9 ---- 10 misses=1 11 12 # This should be in the cache. 13 read-for-compaction offset=4096 size=2000 14 ---- 15 misses=0 16 17 # This should miss the cache. 18 read-for-compaction offset=4096 size=100000 19 ---- 20 misses=1 21 22 # This should miss the cache again - we don't populate the cache when doing 23 # compaction reads. 24 read-for-compaction offset=4096 size=100000 25 ---- 26 misses=1