Compression Modes in JSSC
JSSC uses multiple compression modes internally to achieve optimal compression for different types of input data.
A compression mode defines how the input string is analyzed, transformed, and encoded into a compressed JavaScript string.
Compression modes are an internal part of the algorithm and are selected automatically during compression.
List of JSSC Compression Modes
00No Compression01Two-Digit CharCode Concatenation02Two-Byte CharCode Concatenation03Decimal Integer Packing04Alphabet Encoding05Character Encoding06Inline Integer Encoding07Frequency Map08URL09SegmentationSplits the input into independent segments that may use different compression modes.
10String RepetitionDetects and encodes repeated strings.
11Recursive CompressionApplies compression recursively to already compressed data.