Schedule Every 20 Minutes
The expression */20 * * * * tells cron to execute three times per hour. Decode and translate it dynamically.
Next 5 Run Dates ()
What does */20 * * * * mean?
The cron expression */20 * * * * translates to Every 20 minutes.
Executing exactly three times an hour (at minutes 0, 20, and 40), this pattern is excellent for distributing workloads evenly. It's heavily favored for tasks like refreshing RSS feeds, pulling down external API weather data, or running localized incremental backups.