我想在我的网站上创建一个通知系统(像堆栈溢出)
我们如何安排在24小时内为用户发送通知的任务?
我们如何安排在24小时内为用户发送通知的任务?
我们可以使用MVC4还是应该使用Windows服务?
编辑:
我在MVC4应用程序的3个月内使用FluentScheduler的经验。
FluentScheduler易于配置和使用,但它不会随时运行任务。有时运行,有时不运行。
我认为最好的安排方式是Windows Service,以确保在特定时间运行任务。
解决方法
发现这是一个令人敬畏的调度程序,
FluentScheduler
用法:
// Schedule an ITask to run at an interval Schedule<MyTask>().ToRunNow().AndEvery(2).Seconds();