Schedule Jobs Every 2 Minutes
The cron syntax */2 * * * * triggers your job every two minutes. See the next run dates and adjust the timezone here.
Next 5 Run Dates ()
What does */2 * * * * mean?
The cron expression */2 * * * * translates to Every 2 minutes.
Using a two-minute interval allows you to poll for updates frequently while halving the CPU load compared to a per-minute schedule. It's often deployed for syncing file directories, updating live sports scores on a dashboard, or pinging secondary services.