File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
turbopack/crates/turbo-persistence/src Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -35,12 +35,12 @@ const AMQF_FALSE_POSITIVE_RATE: f64 = 0.01;
3535const KEY_COMPRESSION_DICTIONARY_SIZE : usize = 64 * 1024 - 1 ;
3636/// The maximum bytes that should be selected as key samples to create a compression dictionary
3737const KEY_COMPRESSION_SAMPLES_SIZE : usize = 256 * 1024 ;
38- /// The minimum bytes that should be selected as value samples. Below that no compression dictionary
38+ /// The minimum bytes that should be selected as keys samples. Below that no compression dictionary
3939/// is used.
4040const MIN_KEY_COMPRESSION_SAMPLES_SIZE : usize = 1024 ;
41- /// The bytes that are used per key/value entry for a sample.
41+ /// The bytes that are used per key entry for a sample.
4242const COMPRESSION_DICTIONARY_SAMPLE_PER_ENTRY : usize = 100 ;
43- /// The minimum bytes that are used per key/value entry for a sample.
43+ /// The minimum bytes that are used per key entry for a sample.
4444const MIN_COMPRESSION_DICTIONARY_SAMPLE_PER_ENTRY : usize = 16 ;
4545
4646/// Trait for entries from that SST files can be created
You can’t perform that action at this time.
0 commit comments