tracks lexicons and how many times they appeared on the jetstream

feat(server): disable write buffer always

ptr.pet e77f32a4 109a2f6c

verified
+4 -1
+4 -1
server/src/db/mod.rs
··· 5 5 ops::{Bound, Deref, RangeBounds}, 6 6 path::Path, 7 7 time::Duration, 8 + u64, 8 9 }; 9 10 10 11 use byteview::StrView; ··· 97 98 impl Default for DbConfig { 98 99 fn default() -> Self { 99 100 Self { 100 - ks_config: fjall::Config::default().cache_size(1024 * 1024 * 512), 101 + ks_config: fjall::Config::default() 102 + .cache_size(1024 * 1024 * 512) 103 + .max_write_buffer_size(u64::MAX), 101 104 min_block_size: 1000, 102 105 max_block_size: 250_000, 103 106 max_last_activity: Duration::from_secs(10),