tracks lexicons and how many times they appeared on the jetstream

refactor(server): increase block size even more, reenable compression

ptr.pet b63273b4 bf2179a4

verified
+2 -2
+2 -2
server/src/db/handle.rs
··· 57 57 impl LexiconHandle { 58 58 pub fn new(keyspace: &Keyspace, nsid: &str) -> Self { 59 59 let opts = PartitionCreateOptions::default() 60 - .block_size(1024 * 32) 61 - .compression(fjall::CompressionType::None); 60 + .block_size(1024 * 128) 61 + .compression(fjall::CompressionType::Miniz(9)); 62 62 Self { 63 63 tree: keyspace.open_partition(nsid, opts).unwrap(), 64 64 nsid: nsid.into(),