Prism6下的MEF:基於微軟企業庫的Cache

来源:http://www.cnblogs.com/youngytj/archive/2016/08/10/5755281.html
-Advertisement-
Play Games

通常,應用程式可以將那些頻繁訪問的數據,以及那些需要大量處理時間來創建的數據存儲在記憶體中,從而提高性能。基於微軟的企業庫,我們的快速創建一個緩存的實現。 新建PrismSample.Infrastructure.Cache 新建一個類庫項目,將其命名為PrismSample.Infrastructu ...


通常,應用程式可以將那些頻繁訪問的數據,以及那些需要大量處理時間來創建的數據存儲在記憶體中,從而提高性能。基於微軟的企業庫,我們的快速創建一個緩存的實現。

新建PrismSample.Infrastructure.Cache

新建一個類庫項目,將其命名為PrismSample.Infrastructure.Cache,然後從nuget中下載微軟企業庫的Cache。
Image

然後新建我們的CacheManager類:

using Microsoft.Practices.EnterpriseLibrary.Caching;
using System.ComponentModel.Composition;

namespace PrismSample.Infrastructure.Cache
{
    [Export("PrismSampleCache", typeof(ICacheManager))]
    public class CacheManager : ICacheManager
    {
        ICacheManager _cacheManager;

        public CacheManager()
        {
            _cacheManager = CacheFactory.GetCacheManager("MemoryCacheManager");
        }

        public object this[string key]
        {
            get
            {
                return _cacheManager[key];
            }
        }

        public int Count
        {
            get
            {
                return _cacheManager.Count;
            }
        }

        public void Add(string key, object value)
        {
            _cacheManager.Add(key, value);
        }

        public void Add(string key, object value, CacheItemPriority scavengingPriority, ICacheItemRefreshAction refreshAction, params ICacheItemExpiration[] expirations)
        {
            _cacheManager.Add(key, value, scavengingPriority, refreshAction, expirations);
        }

        public bool Contains(string key)
        {
            return _cacheManager.Contains(key);
        }

        public void Flush()
        {
            _cacheManager.Flush();
        }

        public object GetData(string key)
        {
        return  _cacheManager.GetData(key);
        }

        public void Remove(string key)
        {
            _cacheManager.Remove(key);
        }
    }
}

其中MemoryCacheManager是我們稍後需要在App.config文件中配置的。

修改生成後事件:

xcopy "$(TargetPath)" "$(SolutionDir)\PrismSample\bin\Debug\" /Y

Image

之所以添加生成後事件,是因為Cache的類庫的引入不是通過Project間的項目引用來實現的,是在運行時MEF的容器去尋找指令集,所以我們把程式集都放置到運行目錄下。

修改App.config配置文件

<?xml version="1.0" encoding="utf-8"?>
<configuration>
    <configSections>
        <section name="cachingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Caching.Configuration.CacheManagerSettings, Microsoft.Practices.EnterpriseLibrary.Caching" />
    </configSections>
        <startup> 
            <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
        </startup>
    <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
        <dependentAssembly>
            <assemblyIdentity name="Microsoft.Practices.ServiceLocation" publicKeyToken="31bf3856ad364e35" culture="neutral" />
            <bindingRedirect oldVersion="0.0.0.0-1.3.0.0" newVersion="1.3.0.0" />
        </dependentAssembly>
        </assemblyBinding>
    </runtime>
    <cachingConfiguration defaultCacheManager="MemoryCacheManager">
        <cacheManagers>
        <add name="MemoryCacheManager" type="Microsoft.Practices.EnterpriseLibrary.Caching.CacheManager, Microsoft.Practices.EnterpriseLibrary.Caching" expirationPollFrequencyInSeconds="60" maximumElementsInCacheBeforeScavenging="1000" numberToRemoveWhenScavenging="10" backingStoreName="NullBackingStore" />
        </cacheManagers>
        <backingStores>
        <add type="Microsoft.Practices.EnterpriseLibrary.Caching.BackingStoreImplementations.NullBackingStore, Microsoft.Practices.EnterpriseLibrary.Caching"
            name="NullBackingStore" />
        </backingStores>
    </cachingConfiguration>
</configuration>

配置文件的生成可以通過微軟企業庫的工具(配置方式)

修改Bootstrapper,將目錄下符合條件的dll全部導入

using Prism.Mef;
using PrismSample.Infrastructure.Abstract.Presentation.Interface;
using System.ComponentModel.Composition.Hosting;
using System.Windows;
using Prism.Logging;
using PrismSample.Infrastructure.Logger;
using System.IO;
using System;

namespace PrismSample
{
    public class Bootstrapper : MefBootstrapper
    {
        private const string SEARCH_PATTERN = "PrismSample.Infrastructure.*.dll";

        protected override DependencyObject CreateShell()
        {
            IViewModel shellViewModel = this.Container.GetExportedValue<IViewModel>("ShellViewModel");      
            return shellViewModel.View as DependencyObject;
        }

        protected override void InitializeShell()
        {
            Application.Current.MainWindow = (Shell)this.Shell;
            Application.Current.MainWindow.Show();
        }

        protected override void ConfigureAggregateCatalog()
        {
            base.ConfigureAggregateCatalog();

            //載入自己
            this.AggregateCatalog.Catalogs.Add(new AssemblyCatalog(this.GetType().Assembly));

            //載入當前目錄
            DirectoryInfo dirInfo = new DirectoryInfo(@".\");
            foreach (FileInfo fileInfo in dirInfo.EnumerateFiles(SEARCH_PATTERN))
            {
                try
                {
                    this.AggregateCatalog.Catalogs.Add(new AssemblyCatalog(fileInfo.FullName));
                }
                catch (Exception ex)
                {
                    this.Logger.Log( string.Format("導入異常:{0}", ex.Message), Category.Exception, Priority.None);
                }
            }
        }

        protected override ILoggerFacade CreateLogger()
        {
            return new Logger();
        }
    }
}

測試運行

修改ShellViewModel的構造函數

[ImportingConstructor]
public ShellViewModel([Import("ShellView", typeof(IView))]IView view, 
                        [Import]ILoggerFacade logger, 
                        [Import("PrismSampleCache", typeof(ICacheManager))] ICacheManager _cacheManager)
{
    this.View = view;
    this.View.DataContext = this;

    _cacheManager.Add("SampleValue", "CacheValue");
    this._text = _cacheManager.GetData("SampleValue").ToString();
    logger.Log("ShellViewModel Created", Category.Info, Priority.None);
}

運行結果:
Image

小結

本文用微軟企業庫實現了一個簡單的緩存系統。
源碼下載

參考信息

patterns & practices – Enterprise Library
黃聰:Microsoft Enterprise Library 5.0 系列教程(一) : Caching Application Block (初級)


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 參考文章:http://blog.csdn.net/zhensoft163/article/details/7174661 我用到了這一種方式: 感覺又學到了新知識。 ...
  • 恢復內容開始 想做一個WPF 文字豎排 類似上圖。用在TabItem的header上面。 第一種挺無聊的 2.wpf 裝換器 其實就是加換行符 3.最後我發現這樣做的效果最好 文字間距 一般 http://zhidao.baidu.com/link?url=5S37v1FFQKvwf0x5LQLqL ...
  • 第一種方式: 這樣就可以彈出框了,這種方式適合刪除和查詢操作,支持當前視窗跳轉頁面。 第二種方式: 這種方式既可以彈出提示,還可以在當前視窗的父窗體跳轉頁面或者刷新頁面。 比如說這種情況: 如果想在編輯頁面彈出提示併在編輯頁面跳轉到另一個頁面,或者保持當前編輯頁面不跳轉,那就使用第一種方式。 如果想 ...
  • 在mvc-bootstrap中使用時@Scripts.Render("~/bundles/jqueryval")加上驗證的js ...
  • 面向對象的編程區別於面向過程的編程,其操作的單元是類,而面向過程操作的單元是方法。即面向過程的編程是由一個又一個的方法組成的。而面向對象的編程是由一個又一個類組成的。相對於面向過程,面向對象的代碼復用性更好,代碼的隱蔽性更高,並且更加符合人類思維的方式。 ...
  • 最前面的話:Smobiler是一個在VS環境中使用.Net語言來開發APP的開發平臺,也許比Xamarin更方便 ...
  • 1.面向對象的3大屬性,封裝、繼承、多態,以一個加單的電腦為例: 創建一個父類Operation 有兩個屬性 和一個計算方法(虛方法),便於子類重寫: 1 public class Operation 2 { 3 private double _numberA = 0; 4 private dou ...
  • 第一種方式:submit 按鈕 提交 第二種方式: $("#dataform").ajaxSubmit() 提交 第三種方式:post 提交 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...