1、服务端两个版本
窗口版与安装windows服务版

1.1、窗口版

下载地址:https://github.com/dmajkic/redis/downloads

redis-server.exe:服务程序
redis-check-dump.exe:本地数据库检查
redis-check-aof.exe:更新日志检查
redis-benchmark.exe:性能测试,用以模拟同时由N个客户端发送M个 SETs/GETs 查询.
redis-cli.exe: 服务端开启后,我们的客户端就可以输入各种命令测试了

首先以管理员身份打开cmd (窗口+R),进入到安装包下载的位置。输入:redis-server.exe redis.conf 开启Redis服务。提示信息没有报错表示启动成功。

客户端测试,双击打开redis-cli.exe 输入“set aaa 1234”,回车,提示ok,表示缓存写入成功, 再输入"get aaa",回车,即可取到缓存的值

1.2、安装windows服务版

下载地址:https://github.com/rgl/redis/downloads

下载完成后直接点击.exe下一步下一步OK。安装完后我们会在windows服务中找到Redis Service服务。即可跟窗口版效果一样测试客户端。
(注:如果启动失败肯定是端口被占用,如窗口版的测试窗口没关闭掉 redis 端口是 6379)

2、使用(服务端必须运行中)
新建控制台应用程序,下载dll,RedisClient 引用
粘贴以下代码即可马上使用,取消注释部分一块块测试

 static void Main(string[] args)
{
//在Redis中存储常用的5种数据类型:String,Hash,List,SetSorted set RedisClient client = new RedisClient("localhost", 6379);
client.FlushAll(); #region string
//client.Add<string>("StringValueTime", "我已设置过期时间噢30秒后会消失", DateTime.Now.AddMilliseconds(10000));
//while (true)
//{
// if (client.ContainsKey("StringValueTime"))
// {
// Console.WriteLine("String.键:StringValue,值:{0} {1}", client.Get<string>("StringValueTime"), DateTime.Now);
// Thread.Sleep(1000);
// }
// else
// {
// Console.WriteLine("键:StringValue,值:我已过期 {0}", DateTime.Now);
// Thread.Sleep(1000);
// break;
// }
//} //client.Add<string>("StringValue", " String和Memcached操作方法差不多");
//Console.WriteLine("数据类型为:String.键:StringValue,值:{0}", client.Get<string>("StringValue")); //Student stud = new Student() { id = "1001", name = "李四" };
//client.Add<Student>("StringEntity", stud);
//Student Get_stud = client.Get<Student>("StringEntity");
//Console.WriteLine("数据类型为:String.键:StringEntity,值:{0} {1}", Get_stud.id, Get_stud.name);
#endregion #region Hash
//client.SetEntryInHash("HashID", "Name", "张三");
//client.SetEntryInHash("HashID", "Age", "24");
//client.SetEntryInHash("HashID", "Sex", "男");
//client.SetEntryInHash("HashID", "Address", "上海市XX号XX室"); //List<string> HaskKey = client.GetHashKeys("HashID");
//foreach (string key in HaskKey)
//{
// Console.WriteLine("HashID--Key:{0}", key);
//} //List<string> HaskValue = client.GetHashValues("HashID");
//foreach (string value in HaskValue)
//{
// Console.WriteLine("HashID--Value:{0}", value);
//} //List<string> AllKey = client.GetAllKeys(); //获取所有的key。
//foreach (string Key in AllKey)
//{
// Console.WriteLine("AllKey--Key:{0}", Key);
//}
#endregion #region List
/*
* list是一个链表结构,主要功能是push,pop,获取一个范围的所有的值等,操作中key理解为链表名字。
* Redis的list类型其实就是一个每个子元素都是string类型的双向链表。我们可以通过push,pop操作从链表的头部或者尾部添加删除元素,
* 这样list既可以作为栈,又可以作为队列。Redis list的实现为一个双向链表,即可以支持反向查找和遍历,更方便操作,不过带来了部分额外的内存开销,
* Redis内部的很多实现,包括发送缓冲队列等也都是用的这个数据结构
*/
//client.EnqueueItemOnList("QueueListId", "1.张三"); //入队
//client.EnqueueItemOnList("QueueListId", "2.张四");
//client.EnqueueItemOnList("QueueListId", "3.王五");
//client.EnqueueItemOnList("QueueListId", "4.王麻子");
//int q = client.GetListCount("QueueListId");
//for (int i = 0; i < q; i++)
//{
// Console.WriteLine("QueueListId出队值:{0}", client.DequeueItemFromList("QueueListId")); //出队(队列先进先出)
//} //client.PushItemToList("StackListId", "1.张三"); //入栈
//client.PushItemToList("StackListId", "2.张四");
//client.PushItemToList("StackListId", "3.王五");
//client.PushItemToList("StackListId", "4.王麻子");
//int p = client.GetListCount("StackListId");
//for (int i = 0; i < p; i++)
//{
// Console.WriteLine("StackListId出栈值:{0}", client.PopItemFromList("StackListId")); //出栈(栈先进后出)
//} #endregion #region Set无序集合
/*
它是string类型的无序集合。set是通过hash table实现的,添加,删除和查找,对集合我们可以取并集,交集,差集
*/
//client.AddItemToSet("Set1001", "小A");
//client.AddItemToSet("Set1001", "小B");
//client.AddItemToSet("Set1001", "小C");
//client.AddItemToSet("Set1001", "小D");
//HashSet<string> hastsetA = client.GetAllItemsFromSet("Set1001");
//foreach (string item in hastsetA)
//{
// Console.WriteLine("Set无序集合ValueA:{0}", item); //出来的结果是无须的
//} //client.AddItemToSet("Set1002", "小K");
//client.AddItemToSet("Set1002", "小C");
//client.AddItemToSet("Set1002", "小A");
//client.AddItemToSet("Set1002", "小J");
//HashSet<string> hastsetB = client.GetAllItemsFromSet("Set1002");
//foreach (string item in hastsetB)
//{
// Console.WriteLine("Set无序集合ValueB:{0}", item); //出来的结果是无须的
//} //HashSet<string> hashUnion = client.GetUnionFromSets(new string[] { "Set1001", "Set1002" });
//foreach (string item in hashUnion)
//{
// Console.WriteLine("求Set1001和Set1002的并集:{0}", item); //并集
//} //HashSet<string> hashG = client.GetIntersectFromSets(new string[] { "Set1001", "Set1002" });
//foreach (string item in hashG)
//{
// Console.WriteLine("求Set1001和Set1002的交集:{0}", item); //交集
//} //HashSet<string> hashD = client.GetDifferencesFromSet("Set1001", new string[] { "Set1002" }); //[返回存在于第一个集合,但是不存在于其他集合的数据。差集]
//foreach (string item in hashD)
//{
// Console.WriteLine("求Set1001和Set1002的差集:{0}", item); //差集
//} #endregion #region SetSorted 有序集合
/*
sorted set 是set的一个升级版本,它在set的基础上增加了一个顺序的属性,这一属性在添加修改.元素的时候可以指定,
* 每次指定后,zset(表示有序集合)会自动重新按新的值调整顺序。可以理解为有列的表,一列存 value,一列存顺序。操作中key理解为zset的名字.
*/
client.AddItemToSortedSet("SetSorted1001", "1.刘仔");
client.AddItemToSortedSet("SetSorted1001", "2.星仔");
client.AddItemToSortedSet("SetSorted1001", "3.猪仔");
List<string> listSetSorted = client.GetAllItemsFromSortedSet("SetSorted1001");
foreach (string item in listSetSorted)
{
Console.WriteLine("SetSorted有序集合{0}", item);
}
#endregion
}

  

c# Redis 使用的更多相关文章

  1. 使用redis构建可靠分布式锁

    关于分布式锁的概念,具体实现方式,直接参阅下面两个帖子,这里就不多介绍了. 分布式锁的多种实现方式 分布式锁总结 对于分布式锁的几种实现方式的优劣,这里再列举下 1. 数据库实现方式 优点:易理解 缺 ...

  2. Ignite性能测试以及对redis的对比

    测试方法 为了对Ignite做一个基本了解,做了一个性能测试,测试方法也比较简单主要是针对client模式,因为这种方法和使用redis的方式特别像.测试方法很简单主要是下面几点: 不作参数优化,默认 ...

  3. mac osx 安装redis扩展

    1 php -v查看php版本 2 brew search php|grep redis 搜索对应的redis   ps:如果没有brew 就根据http://brew.sh安装 3 brew ins ...

  4. Redis/HBase/Tair比较

    KV系统对比表 对比维度 Redis Redis Cluster Medis Hbase Tair 访问模式    支持Value大小 理论上不超过1GB(建议不超过1MB) 理论上可配置(默认配置1 ...

  5. Redis数据库

    Redis是k-v型数据库的典范,设计思想及数据结构实现都值得学习. 1.数据类型 value支持五种数据类型:1.字符串(strings)2.字符串列表(lists)3.字符串集合(sets)4.有 ...

  6. redis 学习笔记(2)

    redis-cluster 简介 redis-cluster是一个分布式.容错的redis实现,redis-cluster通过将各个单独的redis实例通过特定的协议连接到一起实现了分布式.集群化的目 ...

  7. redis 学习笔记(1)

    redis持久化 snapshot数据快照(rdb) 这是一种定时将redis内存中的数据写入磁盘文件的一种方案,这样保留这一时刻redis中的数据镜像,用于意外回滚.redis的snapshot的格 ...

  8. python+uwsgi导致redis无法长链接引起性能下降问题记录

    今天在部署python代码到预生产环境时,web站老是出现redis链接未初始化,无法连接到服务的提示,比对了一下开发环境与测试环境代码,完全一致,然后就是查看各种日志,排查了半天也没有查明是什么原因 ...

  9. nginx+iis+redis+Task.MainForm构建分布式架构 之 (redis存储分布式共享的session及共享session运作流程)

    本次要分享的是利用windows+nginx+iis+redis+Task.MainForm组建分布式架构,上一篇分享文章制作是在windows上使用的nginx,一般正式发布的时候是在linux来配 ...

  10. windows+nginx+iis+redis+Task.MainForm构建分布式架构 之 (nginx+iis构建服务集群)

    本次要分享的是利用windows+nginx+iis+redis+Task.MainForm组建分布式架构,由标题就能看出此内容不是一篇分享文章能说完的,所以我打算分几篇分享文章来讲解,一步一步实现分 ...

随机推荐

  1. python 实现快速排序

    一.快排思想 快速排序可以理解为是对冒泡排序的一种改进,把一组数,按照初始选定的标杆(参照数), 分别从两端开始排序,左端'i'只要小于标杆(参照数)的数,右端'j'只要大于标杆(参照数)的数, i- ...

  2. openstack-KVM-存储配置

    一.块存储设备 1.存储设备类型 IDE SCSI 软盘 U盘 virtio磁盘(KVM使用类型) 2.查看存储设备 lspci | grep IDE lspci | grep SCSI lspci ...

  3. HTML 5 Web 音频

    HTML 5 音频http://www.w3school.com.cn/html5/html_5_audio.asp 在 Web 上播放音频http://www.w3school.com.cn/med ...

  4. if判断条件注意!!!

    if(condition){ console.log(condition为true才执行): } 实际上会对condition执行Boolean()转型函数,将其转换成布尔值

  5. 3 The simple past

    1 许多动词通过在原型之后添加-ed 构成一般过去式. 其他动词有不规则的过去式,使用一般过去式的时间词语出现在句首或者句尾 The company grew from 400 to 5,000 pe ...

  6. [转帖]Linux分页机制之分页机制的演变--Linux内存管理(七)

    Linux分页机制之分页机制的演变--Linux内存管理(七) 2016年09月01日 20:01:31 JeanCheng 阅读数:4543 https://blog.csdn.net/gatiem ...

  7. WebService实例-CRM系统提供WebService实现用户注册功能

    <—start—> 编写crm的webservice接口,实现客户信息保存操作.在CustomerService接口中新增一个服务接口,用于添加客户注册的信息. @Path("/ ...

  8. centOS7搭建NFS服务器

    借鉴别人这篇博客搭建成功的:http://blog.51cto.com/mrxiong2017/2087001 NFS系统:用来共享文件.图片.视频 准备两个centOS7服务器,一个作NFS ser ...

  9. Python Note1: Pycharm的安装与使用

    前言 曾经学过一段时间python,虽然现在工作了主要使用C#和C++,但是觉得还是有必要在业余的时候学习学习python,提升下自己的知识面,毕竟技多不压身,加油吧! 安装与激活Pycharm 个人 ...

  10. Flutter的scope_model使用mixin语法报错

    在pubspec.yaml同级目录下创建analysis_options.yaml文件,内容: # https://www.dartlang.org/guides/language/analysis- ...