/
githubmirror
/
bitcoin
Обзор
Документация
Войти
/
githubmirror
/
bitcoin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v31.0rc4
src/kernel/caches.h
39 строк
1 KB
Lőrinc
coins: increase default `dbbatchsize` to 32 MiB
28 авг 2025, 20:09
28 авг 2025, 20:09
b6f8c48
Код
Авторство
О чём код?
// Copyright (c) 2024-present The Bitcoin Core developers // Distributed under the MIT software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #ifndef BITCOIN_KERNEL_CACHES_H #define BITCOIN_KERNEL_CACHES_H #include <util/byte_units.h> #include <algorithm> //! Suggested default amount of cache reserved for the kernel (bytes) static constexpr size_t DEFAULT_KERNEL_CACHE{450_MiB}; //! Default LevelDB write batch size static constexpr size_t DEFAULT_DB_CACHE_BATCH{32_MiB}; //! Max memory allocated to block tree DB specific cache (bytes) static constexpr size_t MAX_BLOCK_DB_CACHE{2_MiB}; //! Max memory allocated to coin DB specific cache (bytes) static constexpr size_t MAX_COINS_DB_CACHE{8_MiB}; namespace kernel { struct CacheSizes { size_t block_tree_db; size_t coins_db; size_t coins; CacheSizes(size_t total_cache) { block_tree_db = std::min(total_cache / 8, MAX_BLOCK_DB_CACHE); total_cache -= block_tree_db; coins_db = std::min(total_cache / 2, MAX_COINS_DB_CACHE); total_cache -= coins_db; coins = total_cache; // the rest goes to the coins cache } }; } // namespace kernel #endif // BITCOIN_KERNEL_CACHES_H