C# redis 的简单应用
region 准备参数
var connStr = "localhost:6379,password=";
var db = 2;
SiteRedisHelper redisHelper = new SiteRedisHelper(connStr, "monster", db);
var key = "MessageQueue";
var msg = string.Empty;
#endregion
消息写入+读取(入门版)
#region 添加消息
while (true)
{
Console.WriteLine("请输入你需要发送的消息");
msg = Console.ReadLine();
if (!string.IsNullOrWhiteSpace(msg))
{
// var listLeftPush = redisHelper.ListLeftPush(key, msg);//添加一条消息并返回已添加消息数量
var listLeftPushAsync = redisHelper.ListLeftPushAsync(key, msg);//异步添加
//追加事件
listLeftPushAsync.ContinueWith((task =>
{
if (task.IsCompletedSuccessfully)
{
Console.WriteLine($"消息添加完毕,此消息队列共有{task.Result}条信息");
}
}));
}
else
{
Console.WriteLine("停止发送消息");
break;
}
};
#endregion
#region 读取消息
while (!string.IsNullOrWhiteSpace(msg = redisHelper.ListLeftPop(key)))
{
Console.WriteLine("消息出列:" + msg);
Debug.WriteLine("消息出列:" + msg);
FileLogTools.Write(msg, "RedisMSMQ.Try");
}
#endregion
相对来说还是挺简单的,也没有遇上什么奇怪的异常,此处便不做什么太多说明
将实体做为消息进行写入/读取
稍微改造了一下使用对象做为消息进行写入/读取
<实体类>
public class MsgEntity
{
public string Content { get; set; }
public DateTimeOffset CreateTime { get; set; }
}
<添加相关>
var msgCount = redisHelper.ListLeftPush<MsgEntity>(key,new MsgEntity()
{
Content = msg,
CreateTime = DateTimeOffset.Now
});
Console.WriteLine($"添加成功,消息站已有{msgCount}条消息");
<读取的消息>
1.原始:
���� DRedisMSMQ.Try, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null RedisMSMQ.Try.Entity.MsgEntity <Content>k__BackingField<CreateTime>k__BackingFieldSystem.DateTimeOffset hello����System.DateTimeOffset DateTime
OffsetMinutes
'NCN���
... 一串乱码 + 一堆命名空间 看来写入需要调整
2.调整 :
<old>
private static byte[] Serialize(object obj)
{
try
{
if (obj == null)
return null;
var binaryFormatter = new BinaryFormatter();
using (var memoryStream = new MemoryStream())
{
binaryFormatter.Serialize(memoryStream, obj);
var data = memoryStream.ToArray();
return data;
}
}
catch (SerializationException ex)
{
throw ex;
}
}
<new>
JsonConvert.SerializeObject(redisValue)
2.1 读取同样处理
<异常记录>
1.添加时异常:System.Runtime.Serialization.SerializationException:“Type 'RedisMSMQ.Try.Entity.MsgEntity' in Assembly 'RedisMSMQ.Try, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable.”
说明:此对象在程序集中不可进行序列化
处理:给类添加特性[Serializable]
使用实体时,处理也是非常简单的,主要是注意一下转string的方式,
个人使用的是JsonConvert 进行序列化/反序列化(json比较简洁,工具类功能也比较齐全) 其次就是编码一致
模拟简单的发布/订阅
#region 准备参数
var connStr = "localhost:6379,password=";
var db = 2;
SiteRedisHelper redisHelper = new SiteRedisHelper(connStr, "monster", db);
var key = "entrepot";
var model = default(Produce);
#endregion
#region 审核线程,订阅申请消息,给予相应的处理
ThreadPool.QueueUserWorkItem((state =>
{
Thread.Sleep(1000);
while (IsDealValid)
{
var validMsg = redisHelper.ListRightPop<Produce>(key);
if (validMsg != null && !validMsg.IsNull())
{
Console.WriteLine($"正在审核产品:{JsonConvert.SerializeObject(validMsg)}");
}
}
}));
#endregion
#region 主线程_添加产品
Console.WriteLine("欢迎来到产品中心,请填写产品注册资料");
IsDealValid = true;
while ((model = Produce.RegisterProduce())!= null)
{
var validCount = redisHelper.ListLeftPush<Produce>(key, model);//将注册资料添加到消息队列中
Console.WriteLine($"产品注册申请正在处理中……,在您之前共有{validCount-1}个产品正在处理,请耐心等待审核结果");
}
#endregion
发布/订阅
#region 订阅消息
ThreadPool.QueueUserWorkItem((state =>
{
redisHelper.Subscribe(channel, ((redisChannel, value) =>
{
//Console.WriteLine($"订阅方收到一条消息:{JsonConvert.SerializeObject(value)}");
if (!value.IsNullOrEmpty)
{
Console.WriteLine($"订阅方收到一条消息:{value.ToString()}");
}
}));
Console.WriteLine("子线程已订阅消息");
}));
#endregion
#region 主线程发布消息
while ((model = Produce.RegisterProduce()) != null)
{
var receiveCount = redisHelper.Publish(channel, model);
Console.WriteLine($"此条消息已被{receiveCount}个人订阅");
}
#endregion
发布订阅 vs 消息队列
1. 消息队列中的消息不能重复读取,发布订阅中的消息由订阅方共享
2. 若发布时没有订阅方,后续加入的订阅方将不能收到此条消息。在消息队列中,若消息没有及时出列,消息将会继续保存在消息队列中
总结
总体来说,redis的操作都是比较简单的,因为官方已经有集成api供我们调用,所以操作起来还是没什么难度,只需要了解方法的应用就可以了,复杂一点的,应该就是业务流程的一些具体应用,应用场景的使用,效率的提升
相关类说明:
SiteRedisHelper
参考博文:http://www.cnblogs.com/liqingwen/archive/2017/04/06/6672452.html
《构造方法》
public SiteRedisHelper(string connStr, string defaultKey, int db = -1)
{
//连接字符串
ConnectionString = connStr;
//建立连接
_connMultiplexer = ConnectionMultiplexer.Connect(ConnectionString);
//默认前缀【无实用】
DefaultKey = defaultKey;
//注册相关事件 【未应用】
RegisterEvent();
//获取Database操作对象
_db = _connMultiplexer.GetDatabase(db);
}
author:monster
since:7/9/2018 11:25:14 AM
direction:redis mssq analysis
C# redis 的简单应用的更多相关文章
- redis 的简单命令
以下实例讲解了如何启动 redis 客户端: 启动 redis 客户端,打开终端并输入命令 redis-cli.该命令会连接本地的 redis 服务. $redis-cli redis > re ...
- Redis的简单了解以及主从复制
1.Redis的简单了解 Redis是一种高性能的分布式NoSql数据库,持久存储,高并发,数据类型丰富,通过现场申请内存空间,同时可以配置虚拟内存.五种数据类型:string(字符串,这种格式和me ...
- Redis主从复制简单介绍
由于本地环境的使用,所以搭建一个本地的Redis集群,本篇讲解Redis主从复制集群的搭建,使用的平台是Windows,搭建的思路和Linux上基本一致! (精读阅读本篇可能花费您15分钟,略读需5分 ...
- Redis 的简单运算
Redis 的简单运算 命令 说明 备注 incr key 在原字段上加 1 只能对整数操作 incrby key increment 在原字段上加上整数 (increment) 只能对整数操作 de ...
- python redis 实现简单的消息订阅
python + redis 实现简单的消息订阅 订阅端 import redis from functools import wraps class Subscribe: def __init__( ...
- Redis的简单动态字符串实现
Redis 没有直接使用 C 语言传统的字符串表示(以空字符结尾的字符数组,以下简称 C 字符串), 而是自己构建了一种名为简单动态字符串(simple dynamic string,sds)的抽象类 ...
- Redis——分布式简单使用
Redis简介:Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言的API. Redis安装:参考博客http://www ...
- Redis的简单介绍及在Windows下环境搭建
简单介绍 1,Redis是什么 最直接的还是看官方的定义吧. Redis is an open source (BSD licensed), in-memory data structure stor ...
- 基于redis 内存数据库简单使用
在ecplise中使用内存数据的客端户,前提要准备要下载两个jar包 commons-pool2-2.0.jar jedis-2.4.2.jar 前提准备做好了,那我们就开启redis的服务,打开一个 ...
- redis的简单使用
一.简单使用Jedis 需要Jedis就从Maven获取吧! Maven Pom.xml <dependency> <groupId>redis.clients</gro ...
随机推荐
- shiro和Spring整合使用注解时没有执行realm的doGetAuthorizationInfo回调方法的解决(XML配置)
在使用Shiro框架进行项目整合时,使用注解在使用Shiro框架进行项目整合时,使用注解在使用Shiro框架进行项目整合时,使用注解@RequiresPermissions为方法提供是需要的权限,但是 ...
- Docker remote api 开启
https://www.cnblogs.com/520playboy/p/7921633.html ExecStart=/usr/bin/dockerd-current -H unix:///var/ ...
- flutter photo_view的改造
app中对图片的浏览.缩放是一个常用的功能,目前有一款插件photo_view,基本上可以满足这些功能,但是有些地方需要修改完善 1.双击放大的时候,有三个状态,会有一个放大的中间状态,需要点击三次才 ...
- 【原】Coursera—Andrew Ng机器学习—课程笔记 Lecture 13—Clustering 聚类
Lecture 13 聚类 Clustering 13.1 无监督学习简介 Unsupervised Learning Introduction 现在开始学习第一个无监督学习算法:聚类.我们的数据没 ...
- 如何在windows下安装mongoDB扩展
安装环境 系统环境:Windows 10 64位 Apache版本:2.4.9 PHP版本:5.5.12 MongoDB版本:3.2.6 Wamp版本:wamp 2.5 86位 ...
- 使用Cloudrea Manager在CDH集群中添加kafka服务节点,更改borker.id配置后无法启动
需要保证meta.properties文件中的broker.id和cloudrea manager的web页面上kafka配置的broker.id一致,最好让server.properties中的br ...
- Python基础:文件的基本操作
# 打开文件(如果不存在则新建) 向其中写入 f = open('D:\\test.txt', 'w') f.write('hello world, i am here!') f.close() pr ...
- Eclipse设置Tab键缩进4个空格的步骤,也就是按一下Tab键输出四个空格
Eclipse设置Tab键缩进4个空格的步骤,也就是按1下Tab键输出4个空格,步奏如下 1.点击 window->preference-,选择 General->Editors-> ...
- XIb中使用tableview报错UIViewAlertForUnsatisfiableConstraints
1.使用断点工具并不能找出错误,最后仔细看了下报错信息 2.报错信息 [LayoutConstraints] Unable to simultaneously satisfy constraints. ...
- 17. Merge Two Binary Trees 融合二叉树
[抄题]: Given two binary trees and imagine that when you put one of them to cover the other, some node ...