对于安装Redis后 很是不明白如何建立Redis 和 .net 的链接配置 于是查找了很多的资料

首先第一步:安装ASP.NET  NuGet 包 (ServiceStack.Redis) 安装好后 查看引用如下:

这时候 首先在 ASP.NET Web.Config中<appSettings>节点中配置如下

  1. <!--Redis 配置-->
  2. <add key="redis_server_write" value="Admin2018@127.0.0.1:6379" />
  3. <add key="redis_server_read" value="Admin2018@127.0.0.1:6379" />
  4. <add key="redis_max_read_pool" value="3" />
  5. <add key="redis_max_write_pool" value="1" />
  6. <!--Redis 配置-->

第二步:就开始配置链接Redis的链接了:

1>自定义创建一个RedisCacheHelper的配置类,代码如下:

  1. public class RedisCacheHelper : ConfigurationSection
  2. {
  3. //读取Redis接口
  4. private static string GetRedis = ConfigurationManager.AppSettings["redis_server_read"];
  5. //读取数量
  6. private static int GetRedisNum =Convert.ToInt32(ConfigurationManager.AppSettings["redis_max_read_pool"]);
  7. //写入Redis接口
  8. private static string SetRedis = ConfigurationManager.AppSettings["redis_server_write"];
  9. //写入数量
  10. private static int SetRedisNum = Convert.ToInt32(ConfigurationManager.AppSettings["redis_max_write_pool"]);
  11.  
  12. //定义连接池
  13. private static readonly PooledRedisClientManager Pool = null;
  14.  
  15. //定义构造函数
  16. static RedisCacheHelper()
  17. {
  18. string [] GetRedisHost = GetRedis.Split(',');
  19. string [] SetRedisHost = SetRedis.Split(',');
  20. if(GetRedisHost.Length>0&&SetRedisHost.Length>0)
  21. {
  22. Pool = new PooledRedisClientManager(GetRedisHost, SetRedisHost, new RedisClientManagerConfig()
  23. {
  24. MaxWritePoolSize = SetRedisNum,
  25. MaxReadPoolSize = GetRedisNum,
  26. AutoStart = true
  27. });
  28.  
  29. }
  30.  
  31. }
  32.  
  33. /// <summary>
  34. /// 添加缓存
  35. /// </summary>
  36. /// <typeparam name="T"></typeparam>
  37. /// <param name="key"></param>
  38. /// <param name="value"></param>
  39. public static void Add<T>(string key,List<T> value)
  40. {
  41. if (value == null)
  42. return;
  43. try
  44. {
  45. if (Pool != null)
  46. {
  47. using (var r = Pool.GetClient())
  48. {
  49. if (r != null)
  50. {
  51. r.SendTimeout = 1000;
  52. r.Set<List<T>>(key, value);
  53. }
  54. }
  55. }
  56. }
  57. catch (Exception ex)
  58. {
  59. ErrorLog.WriteLog(ex);
  60. }
  61.  
  62. }
  63.  
  64. /// <summary>
  65. /// 查询单挑
  66. /// </summary>
  67. /// <typeparam name="T"></typeparam>
  68. /// <param name="key"></param>
  69. /// <returns></returns>
  70. public static T Get<T>(string key)
  71. {
  72. if(key==null)
  73. return default(T);
  74. try
  75. {
  76. if (Pool != null)
  77. {
  78. using (var r = Pool.GetClient())
  79. {
  80. if (r != null)
  81. {
  82. r.SendTimeout = 1000;
  83. return r.Get<T>(key);
  84. }
  85. }
  86. }
  87. }
  88. catch (Exception ex)
  89. {
  90. ErrorLog.WriteLog(ex);
  91. }
  92.  
  93. return default(T);
  94.  
  95. }
  96.  
  97. /// <summary>
  98. /// 查询多条数据
  99. /// </summary>
  100. /// <typeparam name="T"></typeparam>
  101. /// <param name="key"></param>
  102. /// <returns></returns>
  103. public static List<T> GetAll<T>(string key)
  104. {
  105. if (key == null)
  106. return null;
  107. try
  108. {
  109. if (Pool != null)
  110. {
  111. using (var r = Pool.GetClient())
  112. {
  113. if (r != null)
  114. {
  115. r.SendTimeout = 1000;
  116. return r.Get<List<T>>(key);
  117. }
  118. }
  119.  
  120. }
  121. }
  122. catch (Exception ex)
  123. {
  124. ErrorLog.WriteLog(ex);
  125. }
  126.  
  127. return null;
  128. }
  129.  
  130. /// <summary>
  131. /// 删除指定key缓存
  132. /// </summary>
  133. /// <param name="key"></param>
  134. public static void Remove(string key)
  135. {
  136. if (key == null)
  137. return;
  138. try
  139. {
  140. if (Pool != null)
  141. {
  142. using (var r = Pool.GetClient())
  143. {
  144. if (r != null)
  145. {
  146. r.SendTimeout = 1000;
  147. r.Remove(key);
  148. }
  149. }
  150. }
  151. }
  152. catch (Exception)
  153. {
  154.  
  155. throw;
  156. }
  157. }
  158.  
  159. /// <summary>
  160. /// 判断缓存是否存在
  161. /// </summary>
  162. /// <param name="key"></param>
  163. /// <returns></returns>
  164. public static bool Exists(string key)
  165. {
  166. if (key == null)
  167. return false;
  168. try
  169. {
  170. if (Pool != null)
  171. {
  172. using (var r = Pool.GetClient())
  173. {
  174. if (r != null)
  175. {
  176. r.SendTimeout = 1000;
  177. return r.ContainsKey(key);
  178. }
  179. }
  180. }
  181. }
  182. catch (Exception ex)
  183. {
  184. ErrorLog.WriteLog(ex);
  185. }
  186. return false;
  187. }
  188. }

  

在调用的时候 我们还可以在自定义一个Key键的类 用于方便操作存储已经修改。

Redis ASP.NET 配置链接的更多相关文章

  1. IIS/IIS Express/Asp.net配置片段记录

    事情的起因是,我们在项目中使用了URLRewriter.dll作为实现伪静态的工具,在VS2010及之前的开发环境中,该功能运行正常,但在VS Express 2012 for Web中就不起作用了, ...

  2. 实现Redis的主从复制配置

    实现Redis的主从复制配置比较简单,而且容易明白. 下图是要配置的主从复制结构图: 1.说明 Redis主从复制中一个主服务可以有多个从服务,一个从服务可以有多个从服务. 配置比较简单,只需要更改r ...

  3. efcore 配置链接sqlserver 记录

    本文将在asp.net core api 项目中使用efcore corefirst模式 简单配置链接sqlserver数据库,以及简单的数据库迁移操作 一 新建项目 1. 首先我们先用vs2017 ...

  4. Linux下Redis的安装配置

    环境: centos7  PHP7 1.切到准备安装的目录 cd /usr/local 2.下载Redis wget http://download.redis.io/redis-stable.tar ...

  5. 关于asp.net中链接数据库的问题

    学习了asp.net 有web服务器控件和C#代码两部分 那么在做页面时候,需要用到数据库和asp.net的链接 课本上只是说明了和SQL server的链接,本文介绍如何在.net中链接 Acces ...

  6. docker+redis安装与配置,主从+哨兵模式

    docker+redis安装与配置 docker安装redis并且使用redis挂载的配置启动 1.拉取镜像 docker pull redis:3.2 2.准备准备挂载的目录和配置文件 首先在/do ...

  7. efcore 配置链接sqlserver

    本文将在asp.net core api 项目中使用efcore corefirst模式 简单配置链接sqlserver数据库,以及简单的数据库迁移操作 一 新建项目 1. 首先我们先用vs2017 ...

  8. Redis安装以及配置

    下载 http://redis.io/download 解压 tar zxvf redis-2.8.17.tar.gz 编译并安装 1 2 3 4 cd redis-2.8.17 make cd sr ...

  9. redis的安装配置

    主要讲下redis的安装配置,以及以服务的方式启动redis 1.下载最新版本的redis-3.0.7  到http://redis.io/download中下载最新版的redis-3.0.7 下载后 ...

随机推荐

  1. iOS 点击按钮截屏

    @interface CaptureViewController () @property (nonatomic, strong) UIImageView *backgrounView; //控制器背 ...

  2. 2018-8-10-wpf-绑定-DataGridTextColumn-

    title author date CreateTime categories wpf 绑定 DataGridTextColumn lindexi 2018-08-10 19:16:53 +0800 ...

  3. ubuntu18.04 -- 创建第一个Django项目

    step1: 安装虚拟环境: sudo pip3 install virtualenv # 安装虚拟环境sudo pip3 install virtualenvwrapper # 安装虚拟环境扩展包# ...

  4. CMakeLists.txt install

    本部分是关于ros CMakeLists.txt install  :可参考http://wiki.ros.org/catkin/CMakeLists.txt 1.CMakeLists.txt中的in ...

  5. 虚拟机设置静态IP地址

    前言 NAT连接方式只能配置一次,配置好子网掩码和网关IP后,虚拟机NAT连接的ip段都是同一个ip段 1.菜单栏选择 编辑 -> 虚拟网络编辑器,打开虚拟网络编辑器对话框,选择Vmnet8 N ...

  6. SpringMvc返回给前端数据@ResponseBody响应体【支持Ajax】

    1).在Controller中写 //@ResponseBody响应体是jackson包提供的 用于将Controller的方法返回的对象,通过HttpMessageConverter接口转换为指定格 ...

  7. centos 升级python

    1.下载python3.6.1的包 wget https://www.python.org/ftp/python/3.6.1/Python-3.6.1.tgz 2.解压 tar -zxvf Pytho ...

  8. mongodb增删改查基础语法

    转载:https://blog.csdn.net/u012206617/article/details/91047239 1. use DataBaseName 切换/创建数据库use mydb 2. ...

  9. Mysql 列变行其中一种做法。

    需求是: 上班打卡记录   和  下班打卡记录  是分别是两条数据,现在是要合并为一条数据,并且封装成一个实体. 有可能是 只有上班记录,,或者是只有下班的记录.如何关联全查,一边为null或者另一边 ...

  10. Windows漏洞利用 ms17-010

    漏洞名称 SMB 远程命令执行漏洞(ms17-010) 漏洞描述 继2016年 8 月份黑客组织 Shadow Brokers 放出第一批 NSA “方程式小组”内部黑客工具后,2017 年 4 月 ...