与服务共享托管
我很好奇是否有一个用于 ASP.NET 网站的共享托管平台,它允许我设置一个按预定时间间隔执行某些操作的服务。由于预算限制,专用托管不是一种选择。
到目前为止,看起来我的解决方案必须在缓存中设置一个对象并使用过期的回调。
有谁用过上面的方法吗?它有多成功?
还有比这更好的选择或方法吗?
谢谢
I was curious if there is a shared hosting platform for asp.net web sites that would allow me to setup a service that would do something at predetermined intervals. Dedicated hosting is not an option due to budget constraints.
So far, it looks like my solution will have to be to set an object in the cache and use the expired callback.
Has any one used the above method? and how successful was it?
Is there a better option or method than this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果无法设置 Windows 服务,您可以在 global.asax Application_Start 中启动后台线程
If setting up a windows service in not an option you can start a background thread in the global.asax Application_Start