在專案中用到了redis的hash集合,但是servicestack封裝的使用起來不方便,於是就自己封裝了乙個dll,利用的servicestack的pool來動態建立iredisclient例項,建立了乙個抽象類redisoperatorbase封裝了一些基本方法。比較簡單,相信大家一看**就會。
下面貼上最簡單的用法:
首先配置檔案配置節點:
"redistools
" type="
redistools.redisconfig, redistools
"/> "
127.0.0.1:6379
" readserverlist="
[email protected]:6379
" maxwritepoolsize="
60" maxreadpoolsize="
60" autostart="
true
" localcachetime="
180" recordelog="
false
"/>
使用方法:
//////應用程式的主入口點。
/// static
void main(string
args)
如果大家要擴充套件乙個幫助類,只需要繼承redisoperatorbase就可以了。
分享乙個正規表示式幫助類
using system.globalization using system.text.regularexpressions 正規表示式幫助類 public sealed class regexhelper 清除包含 字串 public const string clean string 驗證字串...
分頁查詢的乙個幫助類
分頁sql查詢在的應用很多,主要有儲存過程分頁和sql分頁兩種,我比較喜歡用sql分頁,主要是很方便。為了提高查詢效率,應在排序欄位上加索引。sql分頁查詢的原理很簡單,比如你要查100條資料中的30 40條,你先查詢出前40條,再把這30條倒序,再查出這倒序後的前十條,最後把這十條倒序就是你想要的...
乙個運算元據庫通用幫助類
dbhelper類 using system using system.collections.generic using system.linq using system.text using system.configuration using system.data using system....