|
@@ -97,6 +97,11 @@ namespace MySystem
|
|
|
return csredis.LPush(key, value);
|
|
|
// return 0;
|
|
|
}
|
|
|
+ public bool SetList(string key, long index, object value)
|
|
|
+ {
|
|
|
+ return csredis.LSet(key, index, value);
|
|
|
+ // return 0;
|
|
|
+ }
|
|
|
public T RPop<T>(string key)
|
|
|
{
|
|
|
return csredis.RPop<T>(key);
|
|
@@ -130,15 +135,6 @@ namespace MySystem
|
|
|
}
|
|
|
#endregion
|
|
|
|
|
|
- #region 修改列表对象
|
|
|
- public bool SetList(string key, int index, object value)
|
|
|
- {
|
|
|
- long itemindex = csredis.LLen(key) - index - 1;
|
|
|
- return csredis.LSet(key, itemindex, value);
|
|
|
- // return false;
|
|
|
- }
|
|
|
- #endregion
|
|
|
-
|
|
|
#region 获取列表
|
|
|
public List<T> GetList<T>(string key, int pageNum = 1, int pageSize = 10)
|
|
|
{
|