pub fn parse_rules_chunked_parallel(
grl_text: &str,
chunk_size: usize,
) -> Vec<ParsedRule>Expand description
Parallel chunked parsing for extremely large files
Splits the file into chunks and parses each chunk in parallel, then combines the results. Best for files with 1000+ rules.