これが私の Global.asax のスニペットです。
<script runat="server">
void Application_Start(object sender, EventArgs e) {
// log this call
EventLogger.Log("ApplicationStart");
}
void Application_BeginRequest(object sender, EventArgs e) {
// log what the user is doing
UsageLogger.Log(UsageLogger.GetServerVariables());
}
</script>
ログを開くと、多くの ApplicationStart 呼び出しが使用法の呼び出しに散在しているのが見えます。アプリケーションが頻繁に再起動するように見えるのはなぜですか?