I am trying to crawl every page on my site (ran by a cron) to update data. There are roughly 500 pages.
I have tried 2 options.
- PHP Simple HTML DOM Parser
- PHP get_headers
Using either of the above, each page roughly takes 1.402 seconds to load. In total this takes about 570 seconds.
Is there a more efficient way of doing this?