mirror of
https://github.com/matrix-construct/construct
synced 2024-12-28 16:34:13 +01:00
ircd::db: Allow concurrent memtable write.
This commit is contained in:
parent
f27b56fac3
commit
810888b53c
1 changed files with 1 additions and 1 deletions
|
@ -1072,7 +1072,7 @@ try
|
|||
// These values prevent codepaths from being taken in rocksdb which may
|
||||
// introduce issues for ircd::ctx. We should still fully investigate
|
||||
// if any of these features can safely be used.
|
||||
opts->allow_concurrent_memtable_write = false;
|
||||
opts->allow_concurrent_memtable_write = true;
|
||||
opts->enable_write_thread_adaptive_yield = false;
|
||||
opts->enable_pipelined_write = false;
|
||||
opts->write_thread_max_yield_usec = 0;
|
||||
|
|
Loading…
Reference in a new issue