测试项目搭建
定义一个简单的Mvc项目,有如下文件:
(1)
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.Run(context =>
{
return Task.Run(
async () => {
await Task.Delay(600);
await context.Response.WriteAsync("Hello, world." + context.Request.Uri);
});
});
}
}
(2)
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
DebugUtils.Log("Application_Start");
Task.Run(() => { DebugUtils.beginLog($"bugLog.txt"); });
for (long i = 0; i < 10000000000; i++) ;
DebugUtils.Log("Application_Start finished");
}
protected void Application_End(object sender, EventArgs e)
{
DebugUtils.Log("Application_End");
for (long i = 0; i < 10000000000; i++) ;
DebugUtils.Log("Application_End finished");
}
}
(3)
public class DebugUtils
{
public static ConcurrentQueue<string> queue = new ConcurrentQueue<string>();
public static void beginLog(string fileName)
{
string dirPath = "G:\\c#\\www\\debugLog\\";
if (!Directory.Exists(dirPath))
Directory.CreateDirectory(dirPath);
using (FileStream fs = new FileStream(dirPath + "/" + fileName, FileMode.Append))
{
using (StreamWriter sw = new StreamWriter(fs))
{
string str;
while (true)
{
if (queue.TryDequeue(out str))
{
sw.WriteLine(str);
sw.Flush();
}
}
}
}
}
public static void Log(string str)
{
queue.Enqueue("[" + DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss fff") + "]--[" + Thread.CurrentThread.ManagedThreadId + "]--" + str);
}
}
测试
常规操作
将站点部署到IIS上后,依次进行 修改config, bin文件夹,站点关闭、重启,回收线程池 操作,日志里都有Application_End的触发日志。随后访问页面又会有Application_Start的日志记录。
高并发
使用工具模拟请求高并发地访问这个站点
在此期间修改config, 日志文件中只有Application_End的记录,却没有Application_Start的记录。
再次修改config,这次只有Application_Start的记录,却又没有end的了。尝试多次,一直都这样轮替出现。
虽然上面日志中的记录看上去很平常,但是实际情况却不是这样。
于是做了如下修改(每次启动都使用新的日志文件)
同样进行了几次config文件的修改,新的日志记录如下
可以看到Application_Start事件并不会等待Application_End执行完毕才触发。