I have read that "preg_match_all" is not made for parsing large files, but I need to do that. I have increased:
pcre.backtrack_limit=1000000000
pcre.recursion_limit=1000000000
my PHP memory_limit is set to 5000M and script still ends without any error or exception within 0,2 sec...
Is the only solutinon split the 100M file into 100 small 1M files?
Thanks for help