tracks lexicons and how many times they appeared on the jetstream

refactor(server): dont use any compression for trees

ptr.pet bf2179a4 a58727c0

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