Run a Task Every 10 Minutes
Use */10 * * * * to schedule your cron job every ten minutes. Validate the expression and view upcoming runs here.
Next 5 Run Dates ()
What does */10 * * * * mean?
The cron expression */10 * * * * translates to Every 10 minutes.
A ten-minute gap provides ample time for longer-running background scripts to finish before the next execution begins. This prevents job overlap, making it perfect for generating temporary reporting snapshots or syncing local caches with a master database.