MVC3 - 每 X 时间处理一些内容

发布于 2025-01-06 16:37:37 字数 333 浏览 0 评论 0原文

我对 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 技术交流群。

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

发布评论

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

评论(1

橙味迷妹 2025-01-13 16:37:37

最简单的方法是使用任务计划程序访问您站点中的特定 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.

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