如何逻辑性地组织重复性任务?

发布于 2024-07-05 23:20:48 字数 145 浏览 8 评论 0原文

创建重复任务的最佳方法是什么?

我应该创建一些特殊的语法并解析它,类似于 Linux 上的 Cronjobs,还是应该使用每小时运行一次的 cronjob 来创建更多无休止的重复任务?

请记住,您可以有无数的重复任务和有结束日期的任务。

What's the best way to create recurring tasks?

Should I create some special syntax and parse it, kind of similar to Cronjobs on Linux or should I much rather just use a cronjob that runs every hour to create more of those recurring tasks with no end?

Keep in mind, that you can have endless recurring tasks and tasks with an enddate.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独自←快乐 2024-07-12 23:20:48

Quartz 是一个开源作业调度系统,它使用 cron 表达式来控制作业执行的周期。

Quartz is an open source job scheduling system that uses cron expressions to control the periodicity of the job executions.

述情 2024-07-12 23:20:48

我的方法始终是“以最小的努力获得最大的效果”(或每块钱的最佳效果)。

如果可以用cron来完成,为什么不使用cron呢? 我认为仅仅为了好玩而重新实现 cron 是浪费精力,所以除非你真的需要 cron 没有的功能,否则坚持使用它。

My approach is always "minimum effort for maximum effect" (or best bang per buck).

If it can be done with cron, why not use cron? I'd consider it wasted effort to re-implement cron just for the fun of it so, unless you really need features that cron doesn't have, stick with it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文