tangled
alpha
login
or
join now
ptr.pet
/
nsid-tracker
3
fork
atom
tracks lexicons and how many times they appeared on the jetstream
3
fork
atom
overview
issues
pulls
pipelines
refactor(server): dont use any compression for trees
ptr.pet
7 months ago
bf2179a4
a58727c0
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+3
-1
1 changed file
expand all
collapse all
unified
split
server
src
db
handle.rs
+3
-1
server/src/db/handle.rs
···
56
56
57
57
impl LexiconHandle {
58
58
pub fn new(keyspace: &Keyspace, nsid: &str) -> Self {
59
59
-
let opts = PartitionCreateOptions::default().compression(fjall::CompressionType::Miniz(9));
59
59
+
let opts = PartitionCreateOptions::default()
60
60
+
.block_size(1024 * 32)
61
61
+
.compression(fjall::CompressionType::None);
60
62
Self {
61
63
tree: keyspace.open_partition(nsid, opts).unwrap(),
62
64
nsid: nsid.into(),