石英 cron 从午夜开始每 90 分钟触发一次
我想要一个 cron 作业(或 2 个作业的组合),它全天在 00:00、01:30、03:00 等触发。写这个表达式最简洁的方式是什么?
I want a cron job (or a combination of 2 jobs) which fires at 00:00, 01:30, 03:00 and so on for all day. What can be the most succinct way to write the expression?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要将其分成 2 个作业,因为它是奇数频率
0 0-21/3 * * * 命令
30 1-22/3 * * * 命令
you need to split it into 2 jobs since it is an odd frequency
0 0-21/3 * * * command
30 1-22/3 * * * command
使用以下 cron 表达式配置您的 cron 触发器
另请参阅
Use following cron expression to configure your cron trigger
Also See