I have a php script I need to run frequently, ie approx every 10 seconds. It seems that cron is not suitable given the required frequency.
Ideally I would like to run my script; a) in a loop with a short pause(say) 5 seconds between each execution, or b) schedule the script to run every 10 seconds
php, mysql, linux
Any suggestions are greatly appreciated.