tangled
alpha
login
or
join now
ptr.pet
/
nsid-tracker
3
fork
atom
tracks lexicons and how many times they appeared on the jetstream
3
fork
atom
overview
issues
pulls
pipelines
refactor(server): use more workers on migrate db
ptr.pet
7 months ago
3a678143
f864854c
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+3
-1
1 changed file
expand all
collapse all
unified
split
server
src
main.rs
+3
-1
server/src/main.rs
···
264
264
let to = Arc::new(
265
265
Db::new(
266
266
DbConfig::default().path(".fjall_data_to").ks(|c| {
267
267
-
c.max_journaling_size(u64::MAX)
267
267
+
c.max_journaling_size(1024 * 1024 * 1024 * 8)
268
268
.max_write_buffer_size(u64::MAX)
269
269
+
.compaction_workers(rayon::current_num_threads() * 2)
270
270
+
.flush_workers(rayon::current_num_threads() * 2)
269
271
}),
270
272
cancel_token.child_token(),
271
273
)