What */10 * * * * means
Ten-minute intervals suit sync jobs and cache warmers where a short delay is invisible to users but the load stays modest.
In plain English, cron reads this as: every 10 minutes, every hour, every day.
Field-by-field breakdown
| Field | Value | Meaning |
|---|---|---|
| Minute | */10 | every 10 |
| Hour | * | every value |
| Day of month | * | every value |
| Month | * | every value |
| Day of week | * | every value |
Editing this schedule
To adjust this expression or explain a different one, open the full cron expression parser — it explains any crontab line, lists upcoming runs and breaks down each field as you type. New to the syntax? The practical guide to cron expressions walks through every field with worked examples.