1
0
Fork 0
mirror of https://github.com/romanz/electrs.git synced 2025-02-24 15:02:21 +01:00

Keep default parallism settings

This commit is contained in:
Roman Zeyde 2018-07-12 12:47:05 +03:00
parent 125bfe0e15
commit c7b8f57228
No known key found for this signature in database
GPG key ID: 87CAE5FA46917CBB

View file

@ -44,7 +44,6 @@ impl DBStore {
debug!("opening {:?} with {:?}", path, &opts);
let mut db_opts = rocksdb::DBOptions::default();
db_opts.create_if_missing(true);
db_opts.increase_parallelism(2);
db_opts.set_keep_log_file_num(10);
db_opts.set_compaction_readahead_size(2 << 20);