Skip to content

Commit cb70813

Browse files
committed
fix cache logic
1 parent 0f104aa commit cb70813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

segment.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ func (seg *segment) readInternal(blockNumber uint32, chunkOffset int64) ([]byte,
328328
// cache the block, so that the next time it can be read from the cache.
329329
// if the block size is smaller than blockSize, it means that the block is not full,
330330
// so we will not cache it.
331-
if seg.cache != nil && size == blockSize {
331+
if seg.cache != nil && size == blockSize && len(cachedBlock) == 0 {
332332
cacheBlock := make([]byte, blockSize)
333333
copy(cacheBlock, bh.block)
334334
seg.cache.Add(seg.getCacheKey(blockNumber), cacheBlock)

0 commit comments

Comments
 (0)