在 ASP.NET MVC 3 中使用操作方法处理计划任务

发布于 2024-10-20 06:49:13 字数 384 浏览 2 评论 0原文

我有一个托管在普通托管提供商上的 ASP.NET MVC 3 站点,并且刚刚发现它们提供“计划任务”功能,其中将按定义的时间间隔调用 url(或操作方法)。

我计划使用它来发送存储在数据库中的电子邮件,因此该操作方法将每隔 15 分钟调用一次。

您是否预见到任何问题,或者您只是建议反对它?为什么?

注意:在遇到“计划任务”功能之前,我计划使用 Quartz.NET (请参阅我的另一个问题)。

您会推荐哪一个?

I have an ASP.NET MVC 3 site hosted on a normal hosting provider and have just discovered that they offer "scheduled tasks" functionality whereby a url (or Action Method) will be called on a defined interval.

I'm planning to use it to send emails stored in a database, so the action method will be called say every 15 minutes.

Do you foresee any issues, or would you simply advise against it? why?

Note: before coming across the "scheduled tasks" functionality I was planning to use Quartz.NET (see this other question of mine).

Which would you recommend?

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

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

发布评论

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

评论(1

蓝海似她心 2024-10-27 06:49:13

听起来它们都是可行的解决方案。在这种情况下,我倾向于选择将复杂性降至最低的实现。 IMO...那是使用 ISP 的任务调度程序。抽象出执行实际工作的代码。这样,如果您需要增加自己的 cron 的复杂性,就不会浪费任何东西。

Sounds like they are both viable solutions. In cases like these I tend to chose the implementation that minimizes complexity. IMO...that is using the ISP's task scheduler. Abstract out the code doing the actual work. That way if you need to add the complexity of your own cron, nothing is wasted.

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