Skip to content
This repository was archived by the owner on Jun 19, 2023. It is now read-only.

Commit 2e485be

Browse files
ianopolousaschmahmann
authored andcommitted
Use bloom filter in GetSize
1 parent 6686175 commit 2e485be

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

bloom_cache.go

+4
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,10 @@ func (b *bloomcache) Has(k cid.Cid) (bool, error) {
155155
}
156156

157157
func (b *bloomcache) GetSize(k cid.Cid) (int, error) {
158+
if has, ok := b.hasCached(k); ok && !has {
159+
return -1, ErrNotFound
160+
}
161+
158162
return b.blockstore.GetSize(k)
159163
}
160164

0 commit comments

Comments
 (0)