I’m no performance guru, but if you’re using slurp
or similar to read the whole file into memory, definitely look into streaming the input (line-seq
is an easy approach if you don’t have patterns that span lines).
I’m no performance guru, but if you’re using slurp
or similar to read the whole file into memory, definitely look into streaming the input (line-seq
is an easy approach if you don’t have patterns that span lines).