如何在 C#.NET 中做类似 Heroku 的延迟作业?
想要为我们的 C#.NET Web 应用程序实现类似的东西。 http://devcenter.heroku.com/articles/queueing
已有哪些解决方案那里可以与.NET一起使用?
Would like to implement something similar to this for our C#.NET Web App.
http://devcenter.heroku.com/articles/queueing
What pre-existing solutions are already out there that will work with .NET?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
即使我也在寻找类似的东西。最接近 DelayedJob 的库似乎是 Quartz.net http://quartznet.sourceforge.net/features.html< /a>
显然,在 .Net 世界中,我们不会从 DJ 获得某些功能,例如在函数名称前加上delayed 来延迟函数的执行...
Even I am looking for something similar. The library closest to DelayedJob seems to be Quartz.net http://quartznet.sourceforge.net/features.html
Obviously we wont get certain features from DJ, like prepend a function name with delayed to delay the execution of the function, in the .Net world...