Set of lines need to be parsed with set of different named regexes.
Every line is passed through every regex until match is found. When match is found code should return/yield (named regex,value) pairs for each line.
Files are 2GB+ size so I am looking for some ideas for improving speed of my parsers.
Currently code is executed via python but that part is open to change. One option is to convert everything to C to get more speed from PCRE and faster(?) IO but that's a slow route that's hard to maintain in the future.
I'm looking for practical solutions like:
- converting parsers to some faster language
- moving to cython (?)
- splitting file in multiple chunks and running on top of few threads