Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/stellar-core_example.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -269,10 +269,11 @@ BUCKETLIST_DB_PERSIST_INDEX = true
# thread.
BACKGROUND_OVERLAY_PROCESSING = true

# EXPERIMENTAL_PARALLEL_LEDGER_APPLY (bool) default false
# PARALLEL_LEDGER_APPLY (bool) default true
# This causes ledger application to be done in parallel, which can lead to better
# performance on multicore machines. Note that this is not compatible with SQLite.
EXPERIMENTAL_PARALLEL_LEDGER_APPLY = false
# performance on multicore machines. Note that this is not compatible with
# in-memory SQLite.
PARALLEL_LEDGER_APPLY = true

# BACKGROUND_TX_SIG_VERIFICATION (bool) default true
# Check signatures in the background for transactions received
Expand Down
4 changes: 2 additions & 2 deletions src/main/Config.h
Original file line number Diff line number Diff line change
Expand Up @@ -516,10 +516,10 @@ class Config : public std::enable_shared_from_this<Config>
// index.
size_t BUCKETLIST_DB_INDEX_CUTOFF;

// Enable parallel processing of overlay operations (experimental)
// Enable parallel processing of overlay operations
bool BACKGROUND_OVERLAY_PROCESSING;

// Enable parallel block application (experimental)
// Enable parallel block application
Comment thread
drebelsky marked this conversation as resolved.
bool PARALLEL_LEDGER_APPLY;

// Disable expensive Soroban metrics for performance testing
Expand Down
Loading