@@ -26,7 +26,7 @@ namespace ripple {
2626// Transaction database holds transactions and public keys
2727const char * TxnDBInit[] =
2828{
29- " PRAGMA synchronous=NORMAL ;" ,
29+ " PRAGMA synchronous=OFF ;" ,
3030 " PRAGMA journal_mode=WAL;" ,
3131 " PRAGMA journal_size_limit=1582080;" ,
3232 " PRAGMA max_page_count=2147483646;" ,
@@ -80,7 +80,7 @@ int TxnDBCount = std::extent<decltype(TxnDBInit)>::value;
8080// Ledger database holds ledgers and ledger confirmations
8181const char * LedgerDBInit[] =
8282{
83- " PRAGMA synchronous=NORMAL ;" ,
83+ " PRAGMA synchronous=OFF ;" ,
8484 " PRAGMA journal_mode=WAL;" ,
8585 " PRAGMA journal_size_limit=1582080;" ,
8686
@@ -127,7 +127,7 @@ int LedgerDBCount = std::extent<decltype(LedgerDBInit)>::value;
127127// SyncTableState database holds ledgers and ledger confirmations
128128const char * SyncTableStateDBInit[] =
129129{
130- " PRAGMA synchronous=NORMAL ;" ,
130+ " PRAGMA synchronous=OFF ;" ,
131131 " PRAGMA journal_mode=WAL;" ,
132132 " PRAGMA journal_size_limit=1582080;" ,
133133
0 commit comments