分享一個Redis協助類

來源:互聯網
上載者:User

標籤:

最近在項目中使用了redis來儲存已經下載過的URL,項目中用的是ServiceStack來操作Redis,一開始ServiceStack的版本用的是最新的,後來發現ServiceStack已經商業化了,非商業版本每個小時只能操作6000次Redis,後來把ServiceStack換成了V3版本。

在項目中用到了redis的Hash集合,但是ServiceStack封裝的使用起來不方便,於是就自己封裝了一個dll,利用的ServiceStack的pool來動態建立IRedisClient執行個體,建立了一個抽象類別RedisOperatorBase封裝了一些基本方法。比較簡單,相信大家一看代碼就會。

代碼Github:https://github.com/dazhuangtage/RedisDemo/

 

下面貼上最簡單的用法:

首先設定檔配置節點:

 <configSections>    <section name="RedisTools" type="RedisTools.RedisConfig, RedisTools"/>  </configSections> <RedisTools WriteServerList="127.0.0.1:6379" ReadServerList="[email protected]:6379" MaxWritePoolSize="60" MaxReadPoolSize="60" AutoStart="true" LocalCacheTime="180" RecordeLog="false"/></configuration>

使用方法:

        /// <summary>        /// 應用程式的主進入點。        /// </summary>        static void Main(string[] args)        {            var hashOperator = new HashOperator();            hashOperator.Set("test", "name", "大壯他哥");            Console.WriteLine(hashOperator.Get<string>("test", "name"));            Console.ReadKey();        }    

如果大家要擴充一個協助類,只需要繼承RedisOperatorBase就可以了。

分享一個Redis協助類

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.