MVC3 - 每 X 时间处理一些内容
我对 MVC 的 Web 编程非常陌生,所以我不知道如何调用方法,例如,每小时以及按命令调用。 (方法应该从 FTP 服务器获取文件,跳过已经解析的文件,并解析尚未进入对象的文件并将它们插入数据库)
我知道如果我使用 WindowsForms,我可能会使用 Timer.Tick事件,WPF 将使用 DispatcherTimer 类,但 Web 服务器是一个完全不同的球类游戏,所以有人可以指出我正确的方向吗?
我一直在阅读有关 Web 服务、WCF 的内容?一些事件驱动的东西?
我现在拥有的只是一个 MVC3 项目、一个数据库、使用 EF 的存储库,整个工程......
提前致谢!
I'm very new to web programming with MVC so i dont know how to call a method, for example, every hour and also on command. (Method is supposed to fetch files from an FTP server, skip the already parsed files, and parse the ones that havent been into objects and insert them in a database)
I know if i were using WindowsForms i'd probably be using Timer.Tick Events, WPF would use the DispatcherTimer class, but a web server is a whole different ball game so could somebody please point me in the right direction?
Ive been reading about Web services, WCF? Some event driven thing?
All i have right now is an MVC3 project, a database, repositories using EF, the whole works..
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是使用任务计划程序访问您站点中的特定 URL给定的间隔。
IE 利用一些已经在您的平台上运行良好的通用机制......而不是为了特定用途而进行不必要的重新发明。
The simplest way would be to use the Task Scheduler to access a particular URL in your site on a given interval.
I.E. Make use of something that already works very well as a general purpose mechanism on your platform... rather than unnecessarily reinventing for a specific use.