CompactionSetup typedef

CompactionSetup = ({int compactionTargetChars, int minCharsToCompact, int recentCharsToKeep})

Implementation

typedef CompactionSetup = ({
  int recentCharsToKeep, // verbatim recent context
  int minCharsToCompact, // older content threshold to trigger compaction
  int compactionTargetChars, // target compacted length
});