using Microsoft.Extensions.Options;
using ServiceStack.Redis;
using Txgy.RBS.Framework.RedisHelper.Init;
using Txgy.RBS.Framework.RedisHelper.Interface;
namespace Txgy.RBS.Framework.RedisHelper.Service
{
///
/// Redis list的实现为一个双向链表,即可以支持反向查找和遍历,更方便操作,不过带来了部分额外的内存开销,
/// Redis内部的很多实现,包括发送缓冲队列等也都是用的这个数据结构。
///
public class RedisListService : RedisBase
{
public RedisListService(IOptionsMonitor options) : base(options)
{
}
#region 赋值
///
/// 从左侧向list中添加值
///
public void LPush(string key, string value)
{
IClient.PushItemToList(key, value);
}
///
/// 从左侧向list中添加值,并设置过期时间
///
public void LPush(string key, string value, DateTime dt)
{
IClient.PushItemToList(key, value);
IClient.ExpireEntryAt(key, dt);
}
///
/// 从左侧向list中添加值,设置过期时间
///
public void LPush(string key, string value, TimeSpan sp)
{
IClient.PushItemToList(key, value);
IClient.ExpireEntryIn(key, sp);
}
///
/// 从右侧向list中添加值
///
public void RPush(string key, string value)
{
IClient.PrependItemToList(key, value);
}
///
/// 从右侧向list中添加值,并设置过期时间
///
public void RPush(string key, string value, DateTime dt)
{
IClient.PrependItemToList(key, value);
IClient.ExpireEntryAt(key, dt);
}
///
/// 从右侧向list中添加值,并设置过期时间
///
public void RPush(string key, string value, TimeSpan sp)
{
IClient.PrependItemToList(key, value);
IClient.ExpireEntryIn(key, sp);
}
///
/// 添加key/value
///
public void Add(string key, string value)
{
IClient.AddItemToList(key, value);
}
///
/// 添加key/value ,并设置过期时间
///
public void Add(string key, string value, DateTime dt)
{
IClient.AddItemToList(key, value);
IClient.ExpireEntryAt(key, dt);
}
///
/// 添加key/value。并添加过期时间
///
public void Add(string key, string value, TimeSpan sp)
{
IClient.AddItemToList(key, value);
IClient.ExpireEntryIn(key, sp);
}
///
/// 为key添加多个值
///
public void Add(string key, List values)
{
IClient.AddRangeToList(key, values);
}
///
/// 为key添加多个值,并设置过期时间
///
public void Add(string key, List values, DateTime dt)
{
IClient.AddRangeToList(key, values);
IClient.ExpireEntryAt(key, dt);
}
///
/// 为key添加多个值,并设置过期时间
///
public void Add(string key, List values, TimeSpan sp)
{
IClient.AddRangeToList(key, values);
IClient.ExpireEntryIn(key, sp);
}
#endregion
#region 获取值
///
/// 获取list中key包含的数据数量
///
public long Count(string key)
{
return IClient.GetListCount(key);
}
///
/// 获取key包含的所有数据集合
///
public List Get(string key)
{
return IClient.GetAllItemsFromList(key);
}
///
/// 获取key中下标为star到end的值集合
///
public List Get(string key, int star, int end)
{
return IClient.GetRangeFromList(key, star, end);
}
#endregion
#region 阻塞命令
///
/// 阻塞命令:从list为key的尾部移除一个值,并返回移除的值,阻塞时间为sp
///
public string BlockingPopItemFromList(string key, TimeSpan? sp)
{
return IClient.BlockingPopItemFromList(key, sp);
}
///
/// 阻塞命令:从多个list中尾部移除一个值,并返回移除的值&key,阻塞时间为sp
///
public ItemRef BlockingPopItemFromLists(string[] keys, TimeSpan? sp)
{
return IClient.BlockingPopItemFromLists(keys, sp);
}
///
/// 阻塞命令:从list中keys的尾部移除一个值,并返回移除的值,阻塞时间为sp
///
public string BlockingDequeueItemFromList(string key, TimeSpan? sp)
{
return IClient.BlockingDequeueItemFromList(key, sp);
}
///
/// 阻塞命令:从多个list中尾部移除一个值,并返回移除的值&key,阻塞时间为sp
///
public ItemRef BlockingDequeueItemFromLists(string[] keys, TimeSpan? sp)
{
return IClient.BlockingDequeueItemFromLists(keys, sp);
}
///
/// 阻塞命令:从list中一个fromkey的尾部移除一个值,添加到另外一个tokey的头部,并返回移除的值,阻塞时间为sp
///
public string BlockingPopAndPushItemBetweenLists(string fromkey, string tokey, TimeSpan? sp)
{
return IClient.BlockingPopAndPushItemBetweenLists(fromkey, tokey, sp);
}
#endregion
#region 删除
///
/// 从尾部移除数据,返回移除的数据
///
public string PopItemFromList(string key)
{
var sa = IClient.CreateSubscription();
return IClient.PopItemFromList(key);
}
///
/// 从尾部移除数据,返回移除的数据
///
public string DequeueItemFromList(string key)
{
return IClient.DequeueItemFromList(key);
}
///
/// 移除list中,key/value,与参数相同的值,并返回移除的数量
///
public long RemoveItemFromList(string key, string value)
{
return IClient.RemoveItemFromList(key, value);
}
///
/// 从list的尾部移除一个数据,返回移除的数据
///
public string RemoveEndFromList(string key)
{
return IClient.RemoveEndFromList(key);
}
///
/// 从list的头部移除一个数据,返回移除的值
///
public string RemoveStartFromList(string key)
{
return IClient.RemoveStartFromList(key);
}
#endregion
#region 其它
///
/// 从一个list的尾部移除一个数据,添加到另外一个list的头部,并返回移动的值
///
public string PopAndPushItemBetweenLists(string fromKey, string toKey)
{
return IClient.PopAndPushItemBetweenLists(fromKey, toKey);
}
public void TrimList(string key, int start, int end)
{
IClient.TrimList(key, start, end);
}
#endregion
#region 发布订阅
public void Publish(string channel, string message)
{
IClient.PublishMessage(channel, message);
}
public void Subscribe(string channel, Action actionOnMessage)
{
var subscription = IClient.CreateSubscription();
subscription.OnSubscribe = c =>
{
Console.WriteLine($"订阅频道{c}");
Console.WriteLine();
};
//取消订阅
subscription.OnUnSubscribe = c =>
{
Console.WriteLine($"取消订阅 {c}");
Console.WriteLine();
};
subscription.OnMessage += (c, s) =>
{
actionOnMessage(c, s, subscription);
};
Console.WriteLine($"开始启动监听 {channel}");
subscription.SubscribeToChannels(channel); //blocking
}
public void UnSubscribeFromChannels(string channel)
{
var subscription = IClient.CreateSubscription();
subscription.UnSubscribeFromChannels(channel);
}
#endregion
}
}