#include <blockfileinfo.h>
#include <coins.h>
#include <dbwrapper.h>
#include <flatfile.h>
#include <kernel/cs_main.h>
#include <util/fs.h>
#include <util/result.h>
#include <cstddef>
#include <cstdint>
#include <functional>
#include <memory>
#include <optional>
#include <string>
#include <utility>
#include <vector>
Go to the source code of this file.
◆ CheckLegacyTxindex()
◆ DEFAULT_DB_BATCH_SIZE
constexpr int64_t DEFAULT_DB_BATCH_SIZE = 16 << 20 |
|
staticconstexpr |
-dbbatchsize default (bytes)
Definition at line 42 of file txdb.h.
◆ DEFAULT_DB_CACHE_MB
constexpr int64_t DEFAULT_DB_CACHE_MB = 1024 |
|
staticconstexpr |
-dbcache default (MiB)
Definition at line 40 of file txdb.h.
◆ MAX_BLOCK_DB_CACHE_MB
constexpr int64_t MAX_BLOCK_DB_CACHE_MB = 2 |
|
staticconstexpr |
Max memory allocated to block tree DB specific cache, if no -txindex (MiB)
Definition at line 44 of file txdb.h.
◆ MAX_COINS_DB_CACHE_MB
constexpr int64_t MAX_COINS_DB_CACHE_MB = 8 |
|
staticconstexpr |
Max memory allocated to coin DB specific cache (MiB)
Definition at line 53 of file txdb.h.
◆ MAX_DB_CACHE_MB
constexpr int64_t MAX_DB_CACHE_MB = sizeof(void *) > 4 ? 16384 : 1024 |
|
staticconstexpr |
max. -dbcache (MiB)
Definition at line 38 of file txdb.h.
◆ MAX_FILTER_INDEX_CACHE_MB
constexpr int64_t MAX_FILTER_INDEX_CACHE_MB = 1024 |
|
staticconstexpr |
Max memory allocated to all block filter index caches combined in MiB.
Definition at line 51 of file txdb.h.
◆ MAX_TX_INDEX_CACHE_MB
constexpr int64_t MAX_TX_INDEX_CACHE_MB = 1024 |
|
staticconstexpr |
Max memory allocated to block tree DB specific cache, if -txindex (MiB)
Definition at line 49 of file txdb.h.
◆ MIN_DB_CACHE_MB
constexpr int64_t MIN_DB_CACHE_MB = 4 |
|
staticconstexpr |
min. -dbcache (MiB)
Definition at line 36 of file txdb.h.