Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在这个答案 中,我应该如何在 ASP.NET 4 中执行长时间运行的任务?他们建议在 IIS 之外的单独进程中启动任务。这可能吗?
那么在我的 asp.net 应用程序中,我可以将某些任务传递给不同的进程吗?不是线程而是进程。
绝对有可能。
想想 Windows 服务。想想 MSMQ。想想 CreateProcess(...)。