資源簡介
其中包含了Redis并發鎖、Redis事務、Redis中List<T>/Hash<T>的讀取、計數器、Redis隊列、RedisTypedClient等示例
因為示例調用的是本機的Redis,所以需確保您的windows下已經安裝了Redis,具體安裝方式見 http://www.haolizi.net/example/view_8572.html
或者 更改Redis連接的ip地址為你的Redis服務器地址也可以
代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Linq;
using?System.Text;
using?System.Threading;
using?System.Windows.Forms;
using?ServiceStack.Redis;
using?ServiceStack.Redis.Generic;
namespace?SSRedisDemo
{
????public?partial?class?Form1?:?Form
????{
????????public?static?IRedisClientsManager?clientsManager=null;
????????public?static?IRedisClient?redisClient=null;
????????public?Form1()
????????{
????????????InitializeComponent();
????????????var?count?=?this.tabControl1.TabCount;
????????????for?(int?i?=?0;?i?????????????{
????????????????this.tabControl1.GetControl(i).Enabled?=?false;
????????????}
????????????this.tabControl1.GetControl(0).Enabled?=?true;
?????
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件???????41420??2016-07-23?19:57??IRedisClient說明.docx
?????目錄???????????0??2016-07-23?17:07??packages\
?????文件?????????130??2016-07-23?17:07??packages\repositories.config
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Common.4.0.60\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Common.4.0.60\lib\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Common.4.0.60\lib\net40\
?????文件??????186880??2016-07-23?17:07??packages\ServiceStack.Common.4.0.60\lib\net40\ServiceStack.Common.dll
?????文件???????18671??2016-07-23?17:07??packages\ServiceStack.Common.4.0.60\lib\net40\ServiceStack.Common.xm
?????文件???????69986??2016-07-23?17:07??packages\ServiceStack.Common.4.0.60\ServiceStack.Common.4.0.60.nupkg
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Interfaces.4.0.60\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Interfaces.4.0.60\lib\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Interfaces.4.0.60\lib\portable-wp80+sl5+net40+win8+wpa81+monotouch+monoandroid+xamarin.ios10\
?????文件??????133120??2016-07-23?17:07??packages\ServiceStack.Interfaces.4.0.60\lib\portable-wp80+sl5+net40+win8+wpa81+monotouch+monoandroid+xamarin.ios10\ServiceStack.Interfaces.dll
?????文件???????51923??2016-07-23?17:07??packages\ServiceStack.Interfaces.4.0.60\ServiceStack.Interfaces.4.0.60.nupkg
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Redis.4.0.60\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Redis.4.0.60\lib\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Redis.4.0.60\lib\net40\
?????文件??????292352??2016-07-23?17:07??packages\ServiceStack.Redis.4.0.60\lib\net40\ServiceStack.Redis.dll
?????文件???????97530??2016-07-23?17:07??packages\ServiceStack.Redis.4.0.60\lib\net40\ServiceStack.Redis.xm
?????文件??????129189??2016-07-23?17:07??packages\ServiceStack.Redis.4.0.60\ServiceStack.Redis.4.0.60.nupkg
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\net40\
?????文件??????353792??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\net40\ServiceStack.Text.dll
?????文件???????73414??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\net40\ServiceStack.Text.xm
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\portable-net45+win8+monotouch+monoandroid+xamarin.ios10\
?????文件??????331264??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\portable-net45+win8+monotouch+monoandroid+xamarin.ios10\ServiceStack.Text.dll
?????目錄???????????0??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\sl5\
?????文件??????380928??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\sl5\ServiceStack.Text.dll
?????文件??????125247??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\lib\sl5\ServiceStack.Text.xm
?????文件??????464130??2016-07-23?17:07??packages\ServiceStack.Text.4.0.60\ServiceStack.Text.4.0.60.nupkg
............此處省略41個文件信息
評論
共有 條評論