我创建了一个asp.net mvc项目。在这个项目中,我希望一些代码始终运行。我在网络托管服务上发布我的代码。我第一次通过向我的域发送http请求来启动应用程序,我希望应用程序始终保持活动状态并且永远不会关闭。但这不会发生。
即使我看到一些解决方案,如果我有时在我的代码中ping我的域,也会阻止应用程序关闭。但是这个解决方案将应用程序生命周期延长到大约24小时(并不总是!!!)
这是我的代码:
wordmap.append(word)
Global.asax :(通过使用此代码,应用程序很快关闭,这样我使用虚拟控制器)
public class Main
{
public static void main()
{
while (true)
{
try
{
// some codes
}catch(Exception exp)
{
// log the exception message, (but any exception hasn't occurred till now
}
}
}
}
Global.asax :(通过使用此代码,应用程序保持运行大约24小时。这样我就不会使用任何控制器)
public class MvcApplication : System.Web.HttpApplication
{
static Thread keepAliveThread = new Thread(KeepAlive);
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
RouteConfig.RegisterRoutes(RouteTable.Routes);
keepAliveThread.Start();
Main.main();
}
protected void Application_End()
{
keepAliveThread.Abort();
}
static void KeepAlive()
{
while (true)
{
WebRequest req = WebRequest.Create("http://mydomain/Home/Index");
req.GetResponse();
try
{
Thread.Sleep(60000);
}
catch (ThreadAbortException)
{
break;
}
}
}
}
对我的目的有没有更好的解决方案?如果是,请给我一个示例代码。
答案 0 :(得分:3)
通常称为预定/后台作业。您可以使用"预定"用于谷歌搜索。大多数托管提供了一些从控制面板进行操作的方法。例如,在azure上你可以使用" webjobs"。
请注意,有一些众所周知的后台作业解决方案,例如hangfire。除非你真的需要,否则不要重新发明轮子。