tracks lexicons and how many times they appeared on the jetstream
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(server): dont use any compression for trees

dusk bf2179a4 a58727c0

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