mirror of
https://github.com/ipfs/kubo.git
synced 2026-03-05 16:28:06 +08:00
it removes race condition that would happen during various calls License: MIT Signed-off-by: Jakub Sztandera <kubuxu@protonmail.ch>
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package blockstore
|
|
|
|
import (
|
|
"errors"
|
|
|
|
context "gx/ipfs/QmZy2y8t9zQH2a1b8q2ZSLKp17ATuJoCNxxyMFG5qFExpt/go-net/context"
|
|
)
|
|
|
|
// Next to each option is it aproximate memory usage per unit
|
|
type CacheOpts struct {
|
|
HasBloomFilterSize int // 1 bit
|
|
HasBloomFilterHashes int // No size, 7 is usually best, consult bloom papers
|
|
HasARCCacheSize int // 32 bytes
|
|
}
|
|
|
|
func DefaultCacheOpts() CacheOpts {
|
|
return CacheOpts{
|
|
HasBloomFilterSize: 512 * 8 * 1024,
|
|
HasBloomFilterHashes: 7,
|
|
HasARCCacheSize: 64 * 1024,
|
|
}
|
|
}
|
|
|
|
func CachedBlockstore(bs GCBlockstore,
|
|
ctx context.Context, opts CacheOpts) (cbs GCBlockstore, err error) {
|
|
cbs = bs
|
|
|
|
if opts.HasBloomFilterSize < 0 || opts.HasBloomFilterHashes < 0 ||
|
|
opts.HasARCCacheSize < 0 {
|
|
return nil, errors.New("all options for cache need to be greater than zero")
|
|
}
|
|
|
|
if opts.HasBloomFilterSize != 0 && opts.HasBloomFilterHashes == 0 {
|
|
return nil, errors.New("bloom filter hash count can't be 0 when there is size set")
|
|
}
|
|
if opts.HasBloomFilterSize != 0 {
|
|
cbs, err = bloomCached(cbs, ctx, opts.HasBloomFilterSize, opts.HasBloomFilterHashes)
|
|
}
|
|
if opts.HasARCCacheSize > 0 {
|
|
cbs, err = arcCached(cbs, opts.HasARCCacheSize)
|
|
}
|
|
|
|
return cbs, err
|
|
}
|