push block cache memory from 512mb -> 1gb

This commit is contained in:
Jared Wasinger 2025-03-31 18:25:47 +02:00
parent d045214778
commit ed3ef9ee64

View file

@ -44,7 +44,7 @@ const (
var ( var (
blockCacheMaxItems = 8192 // Maximum number of blocks to cache before throttling the download blockCacheMaxItems = 8192 // Maximum number of blocks to cache before throttling the download
blockCacheInitialItems = 32 // Initial number of blocks to start fetching, before we know the sizes of the blocks blockCacheInitialItems = 32 // Initial number of blocks to start fetching, before we know the sizes of the blocks
blockCacheMemory = 512 * 1024 * 1024 // Maximum amount of memory to use for block caching blockCacheMemory = 1024 * 1024 * 1024 // Maximum amount of memory to use for block caching
) )
var ( var (