tracks lexicons and how many times they appeared on the jetstream

feat(server): disable write buffer always

ptr.pet e77f32a4 109a2f6c

verified
Changed files
+4 -1
server
src
db
+4 -1
server/src/db/mod.rs
···
ops::{Bound, Deref, RangeBounds},
path::Path,
time::Duration,
+
u64,
};
use byteview::StrView;
···
impl Default for DbConfig {
fn default() -> Self {
Self {
-
ks_config: fjall::Config::default().cache_size(1024 * 1024 * 512),
+
ks_config: fjall::Config::default()
+
.cache_size(1024 * 1024 * 512)
+
.max_write_buffer_size(u64::MAX),
min_block_size: 1000,
max_block_size: 250_000,
max_last_activity: Duration::from_secs(10),