I have a PHP script that scrapes data from a government web site and puts it in a MySQL database for easier searching. It works great, but every 6,000 some rows, it stops being able to scrape successfully. I think this is some kind of memory leak in with phpQuery, the library I use to parse the HTML I fetch.
Here are the errors, and as you can see they are all in the phpQuery file. The curious thing is, once it errors out, I can restart the script at the record it started erroring on and it works fine for another 6,000 or so records.
Has anyone ever heard of this happening in phpQuery? Perhaps there are too many phpQuery objects? (I can't find a way to 'close' them)
Alternatively, do you have any suggestions for another way I can do this? At the moment, I have to restart the script manually every 40 minutes or so, and with 500,000 records that definitely adds up.