|
之前的文章中,介紹了如何將RabbitMQ以WCF方式進行發(fā)布。今天就介紹一下我們產(chǎn)品中如何使用RabbitMQ的!
在Discuz!NT企業(yè)版中,提供了對HTTP錯誤日志的記錄功能,這一點對企業(yè)版非常重要,另外存儲錯誤日志使用了MongoDB,理由很簡單,MongoDB的添加操作飛快,即使數(shù)量過億之后插入速度依舊不減。
在開始正文之前,先說明一下本文的代碼分析順序,即:程序入口==》RabbitMQ客戶端===>RabbitMQ服務(wù)端。好了,閑話少說,開始正文!
首先是程序入口,也就是WCF+RabbitMQ客戶端實現(xiàn):因為Discuz!NT使用了HttpModule方式來接管HTTP鏈接請求,而在.NET的HttpModule模板中,可以通過如下方法來接管程序運行時發(fā)生的ERROR,如下:
context.Error += new EventHandler(Application_OnError);
而“記錄錯誤日志"的功能入口就在這里:public void Application_OnError(Object sender, EventArgs e)
{
string requestUrl = DNTRequest.GetUrl();
HttpApplication application = (HttpApplication)sender;
HttpContext context = application.Context;#if EntLib
if (RabbitMQConfigs.GetConfig() != null && RabbitMQConfigs.GetConfig().HttpModuleErrLog.Enable)//當開啟errlog錯誤日志記錄功能時
{
RabbitMQClientHelper.GetHttpModuleErrLogClient().AsyncAddLog(new HttpModuleErrLogData(LogLevel.High, context.Server.GetLastError().ToString()));//異步方式
//RabbitMQHelper.GetHttpModuleErrLogClient().AddLog(new HttpModuleErrLogData(LogLevel.High, "wrong message infomation!"));//同步方式
return;
}
#endif
...
}
NET技術(shù):NET 下RabbitMQ實踐 [實戰(zhàn)篇],轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯(lián)系我們修改或刪除,多謝。