Skip to content

Commit 043a4c3

Browse files
committed
Update config documentation
* Fix stellar-core_example.cfg PARALLEL_LEDGER_APPLY documentation * Remove experimental notes for non-experimental config flags in Config.h
1 parent 1b0eccd commit 043a4c3

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

docs/stellar-core_example.cfg

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,11 @@ BUCKETLIST_DB_PERSIST_INDEX = true
269269
# thread.
270270
BACKGROUND_OVERLAY_PROCESSING = true
271271

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

277278
# BACKGROUND_TX_SIG_VERIFICATION (bool) default true
278279
# Check signatures in the background for transactions received

src/main/Config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,10 +516,10 @@ class Config : public std::enable_shared_from_this<Config>
516516
// index.
517517
size_t BUCKETLIST_DB_INDEX_CUTOFF;
518518

519-
// Enable parallel processing of overlay operations (experimental)
519+
// Enable parallel processing of overlay operations
520520
bool BACKGROUND_OVERLAY_PROCESSING;
521521

522-
// Enable parallel block application (experimental)
522+
// Enable parallel block application
523523
bool PARALLEL_LEDGER_APPLY;
524524

525525
// Disable expensive Soroban metrics for performance testing

0 commit comments

Comments
 (0)