Deno Cron
警告:这是一个不稳定的 API,随时可能更改或删除。
Deno Cron 是 Deno 运行时内置的 cron 任务调度程序,在 Deno Deploy 上无需配置即可使用。它不会出现 cron 执行重叠,并会在异常时自动重试处理程序。
创建一个名为“记录消息”的 cron 作业,该作业每分钟运行一次。
Deno.cron("Log a message", "* * * * *", () => {
console.log("This will print once a minute.");
});
创建一个带有以毫秒为单位的退避计划的 cron 作业。
Deno.cron("Retry example", "* * * * *", {
backoffSchedule: [1000, 5000, 10000],
}, () => {
throw new Error("Deno.cron will retry this three times, to no avail!");
});
使用 Deno CLI 在本地运行 此示例
deno run --unstable-cron https://docs.deno.org.cn/examples/cron.ts