in reply to Re^2: Optimise file line by line parsing, substitute SPLIT
in thread Optimise file line by line parsing, substitute SPLIT

... thus confirming that, indeed, this is an I/O-bound process that benefits quite substantially from parallelism at (at least...) a factor of x4. As would be expected.

No. Throwing memory at a IO speeds up processing. Throwing threads at memory, speeds splitting.

  • Comment on Re^3: Optimise file line by line parsing, substitute SPLIT