github.com/cockroachdb/pebble@v1.1.2/objstorage/objstorageprovider/sharedcache/testdata/cache/lru (about)

     1  init num-shards=1 size=1M
     2  ----
     3  initialized with block-size=32768 size=1048576 num-shards=1
     4  
     5  write size=1500000
     6  ----
     7  
     8  read offset=0 size=32K
     9  ----
    10  misses=1
    11  
    12  read offset=32K size=32K
    13  ----
    14  misses=1
    15  
    16  read offset=64K size=960K
    17  ----
    18  misses=1
    19  
    20  # The cache should now be full with the first MB. Read a new block.
    21  read offset=1M size=32K
    22  ----
    23  misses=1
    24  
    25  # The block that was evicted should have been the one at offset 0.
    26  read offset=0 size=32K
    27  ----
    28  misses=1
    29  
    30  # The block that was evicted should have been the one at offset 32768.
    31  read offset=32K size=32K
    32  ----
    33  misses=1