Skip to content

Commit 7b943ae

Browse files
Update config docs (#5265)
Minor updates to `PARALLEL_LEDGER_APPLY` to reflect current non-experimental status; also, removes the `(experimental)` note from `BACKGROUND_OVERLAY_PROCESSING`'s comment
2 parents 0fa9539 + 043a4c3 commit 7b943ae

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
@@ -275,10 +275,11 @@ BUCKETLIST_DB_PERSIST_INDEX = true
275275
# thread.
276276
BACKGROUND_OVERLAY_PROCESSING = true
277277

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

283284
# EXPERIMENTAL_PARALLEL_TX_SET_DOWNLOAD (bool) default false
284285
# Allow downloading of transaction sets in parallel with SCP

src/main/Config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,10 +526,10 @@ class Config : public std::enable_shared_from_this<Config>
526526
// index.
527527
size_t BUCKETLIST_DB_INDEX_CUTOFF;
528528

529-
// Enable parallel processing of overlay operations (experimental)
529+
// Enable parallel processing of overlay operations
530530
bool BACKGROUND_OVERLAY_PROCESSING;
531531

532-
// Enable parallel block application (experimental)
532+
// Enable parallel block application
533533
bool PARALLEL_LEDGER_APPLY;
534534

535535
// Allow downloading of transaction sets in parallel with SCP (experimental)

0 commit comments

Comments
 (0)