cron schedule every few seconds

Is it possible to schedule a worker to be invoked every 15 seconds for example? https://developers.cloudflare.com/workers/configuration/cron-triggers/ This syntax is considered to be invalid */15 * * * * *
Cloudflare Docs
Cron Triggers
Enable your Worker to be executed on a schedule.
2 Replies
Chaika
Chaika3mo ago
You can only be specify down to the minute, and the workers cron will randomly run within that minute. For anything more precise, you'd have to use something like Durable Object Alarms
flof.fly
flof.flyOP3mo ago
Durable Object Alarms! Sounds interesting!! Thanks

Did you find this page helpful?