日韩无码专区无码一级三级片|91人人爱网站中日韩无码电影|厨房大战丰满熟妇|AV高清无码在线免费观看|另类AV日韩少妇熟女|中文日本大黄一级黄色片|色情在线视频免费|亚洲成人特黄a片|黄片wwwav色图欧美|欧亚乱色一区二区三区

RELATEED CONSULTING
相關(guān)咨詢
選擇下列產(chǎn)品馬上在線溝通
服務(wù)時(shí)間:8:30-17:00
你可能遇到了下面的問(wèn)題
關(guān)閉右側(cè)工具欄

新聞中心

這里有您想知道的互聯(lián)網(wǎng)營(yíng)銷(xiāo)解決方案
深入探討WCF緩存機(jī)制基本概念

WCF開(kāi)發(fā)工具是一個(gè)由微軟公司開(kāi)發(fā)的功能強(qiáng)大的開(kāi)發(fā)插件。它的應(yīng)用可以幫助我們實(shí)現(xiàn)包括在通信方面的各種功能需求。那么接下來(lái),我們將會(huì)為大家分析一下其中一個(gè)比較基礎(chǔ)的內(nèi)容,WCF緩存機(jī)制的相關(guān)概念。#t#

公司主營(yíng)業(yè)務(wù):做網(wǎng)站、網(wǎng)站制作、移動(dòng)網(wǎng)站開(kāi)發(fā)等業(yè)務(wù)。幫助企業(yè)客戶真正實(shí)現(xiàn)互聯(lián)網(wǎng)宣傳,提高企業(yè)的競(jìng)爭(zhēng)能力。創(chuàng)新互聯(lián)是一支青春激揚(yáng)、勤奮敬業(yè)、活力青春激揚(yáng)、勤奮敬業(yè)、活力澎湃、和諧高效的團(tuán)隊(duì)。公司秉承以“開(kāi)放、自由、嚴(yán)謹(jǐn)、自律”為核心的企業(yè)文化,感謝他們對(duì)我們的高要求,感謝他們從不同領(lǐng)域給我們帶來(lái)的挑戰(zhàn),讓我們激情的團(tuán)隊(duì)有機(jī)會(huì)用頭腦與智慧不斷的給客戶帶來(lái)驚喜。創(chuàng)新互聯(lián)推出來(lái)賓免費(fèi)做網(wǎng)站回饋大家。

緩存是很占內(nèi)存的,緩存也有它的好處,這里就WCF緩存機(jī)制分析一個(gè)案例,希望大家可以從中得到收獲。首先我們看看MSDN中對(duì)WCF的Session的說(shuō)明:它們由調(diào)用應(yīng)用程序顯式啟動(dòng)和終止。會(huì)話期間傳遞的消息按照接收消息的順序進(jìn)行處理。會(huì)話將一組消息相互關(guān)聯(lián),從而形成對(duì)話。該關(guān)聯(lián)的含義是抽象的。

例如,一個(gè)基于會(huì)話的通道可能會(huì)根據(jù)共享網(wǎng)絡(luò)連接來(lái)關(guān)聯(lián)消息,而另一個(gè)基于會(huì)話的通道可能會(huì)根據(jù)消息正文中的共享標(biāo)記來(lái)關(guān)聯(lián)消息??梢詮臅?huì)話派生的功能取決于關(guān)聯(lián)的性質(zhì)。不存在與 WCF 會(huì)話相關(guān)聯(lián)的常規(guī)數(shù)據(jù)存儲(chǔ)區(qū)。***一句告訴我們,WCF中的Session是無(wú)法像Web應(yīng)用一樣存儲(chǔ)附加信息的。經(jīng)過(guò)研究,我們可以通過(guò)擴(kuò)展MessageHeader實(shí)現(xiàn)一個(gè)附加的數(shù)據(jù)存儲(chǔ)區(qū)在Client端每次請(qǐng)求Service時(shí)發(fā)送到Server端。具體實(shí)現(xiàn)如下(以前述需求為例)。

這是一個(gè)單件類(lèi),Client正常登陸得到Server端回傳的UserIdentity實(shí)例后可以通過(guò)如下代碼將其存入WCF緩存機(jī)制:

 
 
 
  1. UserPermissionInfo.GetInstance().SetUserIdentity
    (ServerReturnedUserIdentity);  

其中ServerReturnedUserIdentity就是Server產(chǎn)生并回傳的UserIdentity下面我們擴(kuò)展MessageHeader將我們自己定義的UserIdentity加入進(jìn)去,WCF緩存代碼如下:

 
 
 
  1. usingSystem;   
  2. usingSystem.Collections.Generic;   
  3. usingSystem.Text;   
  4. usingSystem.ServiceModel;   
  5. usingSystem.ServiceProcess;   
  6. usingSystem.ServiceModel.Dispatcher;   
  7. usingSystem.ServiceModel.Description;   
  8. usingSystem.ServiceModel.Channels;   
  9. usingSystem.ServiceModel.Configuration;   
  10. namespaceBNCommon.ClientHelper {   
  11. publicclassBNClientMessageInspector:IClientMessageInspector 
    { IClientMessageInspector成員  
  12. #regionIClientMessageInspector成員   
  13. publicvoidAfterReceiveReply(refMessagereply,objectcorrelationState) { }   
  14. publicobjectBeforeSendRequest(refMessagerequest,IClientChannelchannel) {   
  15. MessageHeaderMessageHeaderMessageHeadermh=MessageHeader.CreateHeader
    ("UserIdentity","UINS",BNIIClientLayerPlus.UserPermissionInfo
    .GetInstance()._UserIdentity);   
  16. request.Headers.Add(mh);   
  17. returnnull; }   
  18. #endregion } }  

這個(gè)類(lèi)實(shí)現(xiàn)了IClientMessageInspector接口,實(shí)現(xiàn)該接口可以在Client每次向Server請(qǐng)求前及請(qǐng)求返回后控制Client的行為對(duì)發(fā)送和接收的數(shù)據(jù)進(jìn)行處理。現(xiàn)在我們需要實(shí)現(xiàn)BehaviorExtensionElement,IEndpointBehavior將剛剛建立的行為加入Client行為集合,代碼如下:

 
 
 
  1. usingSystem; usingSystem.Collections.Generic;   
  2. usingSystem.Text; usingSystem.ServiceModel;   
  3. usingSystem.ServiceProcess;   
  4. usingSystem.ServiceModel.Dispatcher;   
  5. usingSystem.ServiceModel.Description;   
  6. usingSystem.ServiceModel.Channels;   
  7. usingSystem.ServiceModel.Configuration;   
  8. namespaceBNCommon.ClientHelper {   
  9. publicclassBNClientEndpointBehavior:BehaviorExtensionElement,
    IEndpointBehavior {   
  10. IEndpointBehavior成員  
  11. #regionIEndpointBehavior成員   
  12. publicvoidAddBindingParameters(ServiceEndpointendpoint,
    BindingParameterCollectionbindingParameters) {}   
  13. publicvoidApplyClientBehavior(ServiceEndpointendpoint,
    ClientRuntimeclientRuntime) {   
  14. clientRuntime.MessageInspectors.Add(newBNClientMessageInspector());   
  15. }   
  16. publicvoidApplyDispatchBehavior(ServiceEndpointendpoint,
    EndpointDispatcherendpointDispatcher) { }   
  17. publicvoidValidate(ServiceEndpointendpoint)   
  18. { return; }   
  19. #endregion   
  20. publicoverrideTypeBehaviorType {   
  21. get...{  
  22. returntypeof(BNClientEndpointBehavior);  
  23. } }   
  24. protectedoverrideobjectCreateBehavior() {   
  25. returnnewBNClientEndpointBehavior();   
  26. } } }  

以上就是對(duì)WCF緩存機(jī)制的基本介紹。


本文名稱(chēng):深入探討WCF緩存機(jī)制基本概念
文章出自:http://m.5511xx.com/article/dpghhcg.html