博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用性能优化工具 MVC Mini Profiler (MVC3+EF4.1)
阅读量:5039 次
发布时间:2019-06-12

本文共 2223 字,大约阅读时间需要 7 分钟。

安装:1

 

 

2,运行命令 PM> Install-Package MiniProfiler

 

3,因为我这里使用的是Entity framework 4.1 code first 所以还需要下载 一个包PM> Install-Package MiniProfiler.EF

4,使用说明,查看连接: http://miniprofiler.com/

5,我在MVC3+E.F4.1中的使用

 

View Code
 1         
public ActionResult Index(
int pindex = 
0)
 2         {
 3             
try
 4             {
 5                 
var profiler = MiniProfiler.Current; 
//
 it's ok if this is null
 6                 
using (profiler.Step(
"
Test Bless page
"))
 7                 { 
//
 something more interesting here
 8                     ViewBag.BlessMessageList = GetBlessingStr(pindex);
 9                     Thread.Sleep(
100);
10 
11                 }
12             }
13             
catch (Exception ex)
14             {
15                 
#region 操作失败发送邮件给管理员
16                 EmailServer send = 
new EmailServer();
17                 
string body = 
"
祭奠在线网站祈福墙出现错误,错误信息: 
" + ex.Message;
18                 
//
这个是附件列表
19                 List<
string> list = 
new List<
string>();
20                 
string reciveMail = StringHelper.GetReceiveMail();
21                 
string CcEmailList = StringHelper.GetCCMailList();
22                 send.Send(reciveMail, 
"", CcEmailList, 
"
祭奠在线网站报错邮件
", body, list);
23                 
#endregion
24                 
//
并记录错误日志
25                 Log.WriteLog(
"
网站祈福墙信息
"
"
/Log/Blessing/
", ex.Message);
26                 
//
strJson = "系统正在升级,请稍候再试!";
27             }
28             
return View();
29

6,Global文件中

 

View Code
 1         
protected 
void Application_Start()
 2         {
 3             AreaRegistration.RegisterAllAreas();
 4 
 5             RegisterGlobalFilters(GlobalFilters.Filters);
 6             RegisterRoutes(RouteTable.Routes);
 7             
//
启动性能调试工具---Created by isaac on 2012-04-28
 8 
            
//
Note, that EF 4.1 Update 1 (the version currently on NuGet) has a breaking change which throws the following error when specifying a connection string:
 9 
            
//
The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047)
10 
            
//
MiniProfiler attempts to resolve this issue by detecting the version of Entity Framework that it is running against. If this doesn't work (due to security exceptions), force the hack to be applied by replacing the Initialize() call with: 
11 
12 
            
//
MiniProfilerEF.Initialize_EF42(); 
//
 in Application_Start
13             MiniProfilerEF.Initialize(); 
//
调用EF-CODE FIRST要下载包Install-Package MiniProfiler.EF
14             
15         }
16         
protected 
void Application_BeginRequest()
17         {
18             
//
判断是否是本地操作
19             
if (Request.IsLocal)
20             {
21                 MiniProfiler.Start();
22             }
23         }
24         
protected 
void Application_EndRequest()
25         {
26             
//
停止性能工具
27             MiniProfiler.Stop();
28

7,结果

 

 

转载于:https://www.cnblogs.com/zhangpan1244/archive/2012/04/28/2474792.html

你可能感兴趣的文章
python细节1
查看>>
spark性能调优(二) 彻底解密spark的Hash Shuffle
查看>>
遍历目标目录下的指定文件,未考虑子目录
查看>>
Spring MVC中默认的ResponseBody为String的乱码问
查看>>
解决json日期格式问题的3种方法
查看>>
2019.1.3 Mac安装免费版StarUml3.0.2 &&&Xmind思维导图 &&Google浏览器***版
查看>>
实现一个网页版的聊天室(类似于钉钉群)
查看>>
使用jquery中$.each()方法来循环一个数据列表
查看>>
BZOJ2002 [Hnoi2010]Bounce 弹飞绵羊 LCT
查看>>
JS中 Cookie、 LocalStorage 与 SessionStorage
查看>>
Android 热补丁动态修复框架小结
查看>>
View.VISIBLE、INVISIBLE、GONE的区别
查看>>
疲惫的周末
查看>>
关于hibernate查询映射时无法反序列化问题
查看>>
深度剖析HashMap的数据存储实现原理(看完必懂篇)
查看>>
77.Combinations
查看>>
java字符串的替换replace、replaceAll、replaceFirst的区别详解
查看>>
GUI学习之三——QObject学习总结
查看>>
Python学习1 基础数据类型
查看>>
开始Flask项目
查看>>