tracks lexicons and how many times they appeared on the jetstream

refactor(server): use more workers on migrate db

ptr.pet 3a678143 f864854c

verified
+3 -1
+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 - c.max_journaling_size(u64::MAX) 267 + c.max_journaling_size(1024 * 1024 * 1024 * 8) 268 268 .max_write_buffer_size(u64::MAX) 269 + .compaction_workers(rayon::current_num_threads() * 2) 270 + .flush_workers(rayon::current_num_threads() * 2) 269 271 }), 270 272 cancel_token.child_token(), 271 273 )