I have a php script that runs on a standard linux, apache server. In certain cases I would like to have a php script run exactly 15 minutes after certain action was performed by an user. EG: user visit at 13:04:55 and the background process has to run exactly at 13:19:55
The current solution used is a cron that runs every minute and checks if action is needed but this is not accurate as timer runs exactly on a minute and cant be set to the seconds. EG: cron runs at 13:04, 13:20 and so on.
Any recommendations on how to set these?
Is there an alternative product / gearman any other simple solution?