We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e3cc63 commit 9f6fbc4Copy full SHA for 9f6fbc4
src/fjall.rs
@@ -55,6 +55,10 @@ impl BenchmarkEngine<FjallClient> for FjallClientProvider {
55
.manual_journal_persist(!options.sync)
56
// Set the cache size
57
.cache_size(memory)
58
+ // Set the maximum journal size
59
+ .max_journaling_size(1024 * 1024 * 1024)
60
+ // Set the number of worker threads for parallelism
61
+ .worker_threads(num_cpus::get().min(8))
62
// Open the database
63
.open()?;
64
// Configure and create the keyspace
0 commit comments