為Disruptor 寫的一個簡單實用的.Net擴展

来源:http://www.cnblogs.com/hda37210/archive/2016/03/04/5242185.html
-Advertisement-
Play Games

disruptor 用戶封裝自己的消費者,把消費者註入到消費者容器,消費者容器實現自動創建 緩存隊列,生產者; 文中用到的 disruptor C#移植源代碼 https://github.com/bingyang001/disruptor-net-3.3.0-alpha 作者博客 http://w


 

disruptor   用戶封裝自己的消費者,把消費者註入到消費者容器,消費者容器實現自動創建 緩存隊列,生產者;

 文中用到的 disruptor   C#移植源代碼

 https://github.com/bingyang001/disruptor-net-3.3.0-alpha

 作者博客 http://www.cnblogs.com/liguo/p/3296166.html

 

 消費者容器:

/// <summary>
    /// 消費者管理器
    /// </summary>
    /// <typeparam name="TProduct">產品</typeparam>
    public class Workers<TProduct> where TProduct : Producer<TProduct>, new()
    {
        private readonly WorkerPool<TProduct> _workerPool;

        public Workers(List<IWorkHandler<TProduct>> handers, IWaitStrategy waitStrategy = null, int bufferSize = 1024*64)
        {
            if (handers == null || handers.Count == 0)
                throw new ArgumentNullException("消費事件處理數組為空!");
            if (handers.Count == 1)
                _ringBuffer = RingBuffer<TProduct>.CreateSingleProducer(() => new TProduct(), bufferSize,
                    waitStrategy ?? new YieldingWaitStrategy());
            else
            {
                _ringBuffer = RingBuffer<TProduct>.CreateMultiProducer(() => new TProduct(), bufferSize,
                    waitStrategy ?? new YieldingWaitStrategy());
            }
            _workerPool = new WorkerPool<TProduct>(_ringBuffer
                , _ringBuffer.NewBarrier()
                , new FatalExceptionHandler()
                , handers.ToArray());
            _ringBuffer.AddGatingSequences(_workerPool.getWorkerSequences());
        }

        public void Start()
        {
            _workerPool.start(TaskScheduler.Default);
        }

        public Producer<TProduct> CreateOneProducer()
        {
            return new Producer<TProduct>(this._ringBuffer);
        } 
        public void DrainAndHalt()
        {
            _workerPool.drainAndHalt();
        }

        private readonly RingBuffer<TProduct> _ringBuffer;
    }

 

  生產者(產品): 所有的產品都應該繼承自生產者

/// <summary>
    /// 生產者對象
    /// </summary>
    /// <typeparam name="TProduct">產品類型</typeparam>
    public class Producer<TProduct> where TProduct:Producer<TProduct>
    {

        long _sequence;
        private RingBuffer<TProduct> _ringBuffer;
        public Producer()
        {
            
        }
        public Producer(RingBuffer<TProduct> ringBuffer )
        {
            _ringBuffer = ringBuffer;
        }
        /// <summary>
        /// 獲取可修改的產品
        /// </summary>
        /// <returns></returns>
        public Producer<TProduct> Enqueue()
        {
            long sequence = _ringBuffer.Next();
            Producer<TProduct> producer = _ringBuffer[sequence];
            producer._sequence = sequence;
            if (producer._ringBuffer == null)
                producer._ringBuffer = _ringBuffer;
            return producer;
        }
        /// <summary>
        /// 提交產品修改
        /// </summary>
        public void Commit()
        {
            _ringBuffer.Publish(_sequence);
        }
    }

 

  --------------------------------------------------------

  以上就實現了,測試代碼

  先創建 產品對象:

  

/// <summary>
        /// 產品/繼承生產者
        /// </summary>
        public class Product : Producer<Product>
        {
            //產品包含的屬下隨便定義,無要求,只需要繼承自生產者就行了
            public long Value { get; set; }
            public string Guid { get; set; }
        }

創建消費者對象

 /// <summary>
        /// 消費處理對象
        /// </summary>
        public class WorkHandler : IWorkHandler<Product>
        {
         
            public void OnEvent(Product @event)
            {
                //Test是測試對象數據準確(數據重覆或者丟失數據)
                Test.UpdateCacheByOut(@event.Guid);
                //收到產品,在這裡寫處理代碼

            }

        }

  測試代碼:

  可創建1個或者多個的生產者對象,消費者處理對象;不一定太多,多不一定快; 建議生產者創建一個就行了,多線程操作一個生產者對象; 消費者對象可以根據實際情況創建多少個;

  

           //創建2個消費者,2個生產者, 2個消費者表示,框架會有2個線程去處理消費產品 
Workers<Product> workers = new Workers<Product>( new List<IWorkHandler<Product>>() {new WorkHandler(), new WorkHandler()}); Producer<Product> producerWorkers = workers.CreateOneProducer(); Producer<Product> producerWorkers1 = workers.CreateOneProducer();
//開始消費
  workers.Start();

 產品生產:

 可以在任何引用生產者的地方,把產品放進隊列中. 這裡 放入隊列的方法和平時不太一樣.  這裡採用的是,從隊列裡面拿去一個位置,然後把產品放進去; 具體的做法 ,找生產者,獲取一個產品對象,然後修改產品屬性,最後提交修改.

  var obj = producer.Enqueue();
           //修改產品屬性
                obj.Commit();

 

  以上是關鍵代碼:

完整的測試類 : 包含測試數據正確性,  性能,在不校驗正確性的時候,每秒ops 1千萬左右. 

 class Test
    {
        public static long PrePkgInCount = 0;
        public static long PrePkgOutCount = 0;
        public static long PkgInCount = 0;
        public static long PkgOutCount = 0;
        static ConcurrentDictionary<string, string> InCache = new ConcurrentDictionary<string, string>();
        static ConcurrentDictionary<string, string> OutCache = new ConcurrentDictionary<string, string>();
        private static long Seconds;

        static void Main(string[] args)
        {
            Workers<Product> workers = new Workers<Product>(
            new List<IWorkHandler<Product>>() {new WorkHandler(), new WorkHandler()});

            Producer<Product> producerWorkers = workers.CreateOneProducer();
            Producer<Product> producerWorkers1 = workers.CreateOneProducer();

            workers.Start();
            Task.Run(delegate
            {
                while (true)
                {
                    Thread.Sleep(1000);
                    Seconds++;
                    long intemp = PkgInCount;
                    long outemp = PkgOutCount;
                    Console.WriteLine(
                        $"In ops={intemp - PrePkgInCount},out ops={outemp - PrePkgOutCount},inCacheCount={InCache.Count},OutCacheCount={OutCache.Count},RunningTime={Seconds}");
                    PrePkgInCount = intemp;
                    PrePkgOutCount = outemp;
                }

            });
            Task.Run(delegate { Run(producerWorkers); });
            Task.Run(delegate { Run(producerWorkers); });
            Task.Run(delegate { Run(producerWorkers1); });
            Console.Read();

        }

        public static void Run(Producer<Product> producer)
        {
            for (int i = 0; i < int.MaxValue; i++)
            {

                var obj = producer.Enqueue();
                CheckRelease(obj as Product);
                obj.Commit();
            }
        }

        public static  void CheckRelease(Product publisher)
        {
            Interlocked.Increment(ref PkgInCount);
            return; //不檢查正確性
            publisher.Guid = Guid.NewGuid().ToString();
            InCache.TryAdd(publisher.Guid, string.Empty);
          
        }

        public static void UpdateCacheByOut(string guid)
        {
            Interlocked.Increment(ref Test.PkgOutCount);
            if (guid != null)
                if (InCache.ContainsKey(guid))
                {
                    string str;
                    InCache.TryRemove(guid, out str);
                }
                else
                {
                    OutCache.TryAdd(guid, string.Empty);
                }

        }
        /// <summary>
        /// 產品/繼承生產者
        /// </summary>
        public class Product : Producer<Product>
        {
            //產品包含的屬下隨便定義,無要求,只需要繼承自生產者就行了
            public long Value { get; set; }
            public string Guid { get; set; }
        }

        /// <summary>
        /// 消費處理對象
        /// </summary>
        public class WorkHandler : IWorkHandler<Product>
        {
         
            public void OnEvent(Product @event)
            {

                Test.UpdateCacheByOut(@event.Guid);
                //收到產品,在這裡寫處理代碼

            }

        }
    }

 


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

-Advertisement-
Play Games
更多相關文章
  • 最近看見一個騎士飛行棋的小游戲代碼,感覺這個代碼中將大多數C#的基礎知識都運用到了,是一個新手檢驗學習成果的有效方法,特此將這個代碼整理一遍。這是一個控制台程式。這是代碼下載地址,代碼中的註釋非常詳細介紹了每段代碼的作用: http://files.cnblogs.com/files/xiaohua
  • 上一次介紹的了Rookey.Frame v1.0快速開發平臺的整體功能,接下來會對各個功能點進行解析說明,今天給大家介紹下系統登錄功能。 用戶登錄 系統中基本上所有功能頁面都是從後臺代碼拼接後返回的,登錄頁面也不例外,請看下圖: 接下來看下後臺登錄的HTML: /// <summary> /// 獲
  • 年前用FineUI開發遇到了這樣一個問題,Grid多表頭合計行不能導出,後面到官方示例找了一下,慶幸的是找到了多表頭的導出示例。然後當時為了省事,直接就複製粘貼完事,也沒有仔細的研究代碼。後來運行一看,多表頭的問題是解決了,合計行的問題還是沒有解決。 由於到時要趕流程這個問題就暫時的放在了那裡,時間
  • 當一個App需要推出多語言版本時,就需要使用到【全球化與本地化】服務。 原理及過程 資源文件中包含了所有的控制項信息,通過導出這些控制項信息,修改其對應的相關屬性(比如TextBlock的Text屬性)的字元串,即可實現多語言版本。在資源文件中,控制項通過x:uid進行標示。 設置預設的本地化區域。比如z
  • 前一篇關於anti-forgery token問題的博文提到我們可以通過修改AntiForgeryConfig.UniqueClaimTypeIdentifier屬性來避免AntiForgeryToken生成的問題。但是也許你編譯運行後又得到了這樣一個錯誤: A claim of type 'htt...
  • kendo ui template的用法: Kendo UI 框架提供了一個易用,高性能的JavaScript模板引擎。通過模板可以創建一個HTML片段然後可以和JavaScript數據合併成最終的HTML元素。 Kendo 模板側重於UI顯示,支持關鍵的模板功能,著重於性能而不是語法上的方便。 模
  • <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DemoApplication.aspx.cs" Inherits="WebApplication1.DemoApplication" %> <!DOCTYPE html PUBLIC
  • <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.o
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...