vortex_fsst/
lib.rs

1//! An array that uses the [Fast Static Symbol Table][fsst] compression scheme
2//! to compress string arrays.
3//!
4//! FSST arrays can generally compress string data up to 2x through the use of
5//! string tables. The string table is static for an entire array, and occupies
6//! up to 2048 bytes of buffer space. Thus, FSST is only worth reaching for when
7//! dealing with larger arrays of potentially hundreds of kilobytes or more.
8//!
9//! [fsst]: https://www.vldb.org/pvldb/vol13/p2649-boncz.pdf
10
11mod array;
12mod canonical;
13mod compress;
14mod compute;
15mod ops;
16mod serde;
17#[cfg(test)]
18mod tests;
19
20pub use array::*;
21pub use compress::*;