What is the best way to run a same php script multiple times by doing random queries for a given column with a limit of 1000 per query of the same mysql table via cron (cpanel) without generating so much overhead?
[cron 1]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 2]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 3]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 4]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 5]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 6]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 7]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 8]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 9]
* * * * * curl -s http://[::1]/dir/arquivo.php
[cron 10]
* * * * * curl -s http://[::1]/dir/arquivo.php