Redis ASP.NET 配置链接
对于安装Redis后 很是不明白如何建立Redis 和 .net 的链接配置 于是查找了很多的资料
首先第一步:安装ASP.NET NuGet 包 (ServiceStack.Redis) 安装好后 查看引用如下:
这时候 首先在 ASP.NET Web.Config中<appSettings>节点中配置如下
- <!--Redis 配置-->
- <add key="redis_server_write" value="Admin2018@127.0.0.1:6379" />
- <add key="redis_server_read" value="Admin2018@127.0.0.1:6379" />
- <add key="redis_max_read_pool" value="3" />
- <add key="redis_max_write_pool" value="1" />
- <!--Redis 配置-->
第二步:就开始配置链接Redis的链接了:
1>自定义创建一个RedisCacheHelper的配置类,代码如下:
- public class RedisCacheHelper : ConfigurationSection
- {
- //读取Redis接口
- private static string GetRedis = ConfigurationManager.AppSettings["redis_server_read"];
- //读取数量
- private static int GetRedisNum =Convert.ToInt32(ConfigurationManager.AppSettings["redis_max_read_pool"]);
- //写入Redis接口
- private static string SetRedis = ConfigurationManager.AppSettings["redis_server_write"];
- //写入数量
- private static int SetRedisNum = Convert.ToInt32(ConfigurationManager.AppSettings["redis_max_write_pool"]);
- //定义连接池
- private static readonly PooledRedisClientManager Pool = null;
- //定义构造函数
- static RedisCacheHelper()
- {
- string [] GetRedisHost = GetRedis.Split(',');
- string [] SetRedisHost = SetRedis.Split(',');
- if(GetRedisHost.Length>0&&SetRedisHost.Length>0)
- {
- Pool = new PooledRedisClientManager(GetRedisHost, SetRedisHost, new RedisClientManagerConfig()
- {
- MaxWritePoolSize = SetRedisNum,
- MaxReadPoolSize = GetRedisNum,
- AutoStart = true
- });
- }
- }
- /// <summary>
- /// 添加缓存
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key"></param>
- /// <param name="value"></param>
- public static void Add<T>(string key,List<T> value)
- {
- if (value == null)
- return;
- try
- {
- if (Pool != null)
- {
- using (var r = Pool.GetClient())
- {
- if (r != null)
- {
- r.SendTimeout = 1000;
- r.Set<List<T>>(key, value);
- }
- }
- }
- }
- catch (Exception ex)
- {
- ErrorLog.WriteLog(ex);
- }
- }
- /// <summary>
- /// 查询单挑
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key"></param>
- /// <returns></returns>
- public static T Get<T>(string key)
- {
- if(key==null)
- return default(T);
- try
- {
- if (Pool != null)
- {
- using (var r = Pool.GetClient())
- {
- if (r != null)
- {
- r.SendTimeout = 1000;
- return r.Get<T>(key);
- }
- }
- }
- }
- catch (Exception ex)
- {
- ErrorLog.WriteLog(ex);
- }
- return default(T);
- }
- /// <summary>
- /// 查询多条数据
- /// </summary>
- /// <typeparam name="T"></typeparam>
- /// <param name="key"></param>
- /// <returns></returns>
- public static List<T> GetAll<T>(string key)
- {
- if (key == null)
- return null;
- try
- {
- if (Pool != null)
- {
- using (var r = Pool.GetClient())
- {
- if (r != null)
- {
- r.SendTimeout = 1000;
- return r.Get<List<T>>(key);
- }
- }
- }
- }
- catch (Exception ex)
- {
- ErrorLog.WriteLog(ex);
- }
- return null;
- }
- /// <summary>
- /// 删除指定key缓存
- /// </summary>
- /// <param name="key"></param>
- public static void Remove(string key)
- {
- if (key == null)
- return;
- try
- {
- if (Pool != null)
- {
- using (var r = Pool.GetClient())
- {
- if (r != null)
- {
- r.SendTimeout = 1000;
- r.Remove(key);
- }
- }
- }
- }
- catch (Exception)
- {
- throw;
- }
- }
- /// <summary>
- /// 判断缓存是否存在
- /// </summary>
- /// <param name="key"></param>
- /// <returns></returns>
- public static bool Exists(string key)
- {
- if (key == null)
- return false;
- try
- {
- if (Pool != null)
- {
- using (var r = Pool.GetClient())
- {
- if (r != null)
- {
- r.SendTimeout = 1000;
- return r.ContainsKey(key);
- }
- }
- }
- }
- catch (Exception ex)
- {
- ErrorLog.WriteLog(ex);
- }
- return false;
- }
- }
在调用的时候 我们还可以在自定义一个Key键的类 用于方便操作存储已经修改。
Redis ASP.NET 配置链接的更多相关文章
- IIS/IIS Express/Asp.net配置片段记录
事情的起因是,我们在项目中使用了URLRewriter.dll作为实现伪静态的工具,在VS2010及之前的开发环境中,该功能运行正常,但在VS Express 2012 for Web中就不起作用了, ...
- 实现Redis的主从复制配置
实现Redis的主从复制配置比较简单,而且容易明白. 下图是要配置的主从复制结构图: 1.说明 Redis主从复制中一个主服务可以有多个从服务,一个从服务可以有多个从服务. 配置比较简单,只需要更改r ...
- efcore 配置链接sqlserver 记录
本文将在asp.net core api 项目中使用efcore corefirst模式 简单配置链接sqlserver数据库,以及简单的数据库迁移操作 一 新建项目 1. 首先我们先用vs2017 ...
- Linux下Redis的安装配置
环境: centos7 PHP7 1.切到准备安装的目录 cd /usr/local 2.下载Redis wget http://download.redis.io/redis-stable.tar ...
- 关于asp.net中链接数据库的问题
学习了asp.net 有web服务器控件和C#代码两部分 那么在做页面时候,需要用到数据库和asp.net的链接 课本上只是说明了和SQL server的链接,本文介绍如何在.net中链接 Acces ...
- docker+redis安装与配置,主从+哨兵模式
docker+redis安装与配置 docker安装redis并且使用redis挂载的配置启动 1.拉取镜像 docker pull redis:3.2 2.准备准备挂载的目录和配置文件 首先在/do ...
- efcore 配置链接sqlserver
本文将在asp.net core api 项目中使用efcore corefirst模式 简单配置链接sqlserver数据库,以及简单的数据库迁移操作 一 新建项目 1. 首先我们先用vs2017 ...
- 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 ...
- redis的安装配置
主要讲下redis的安装配置,以及以服务的方式启动redis 1.下载最新版本的redis-3.0.7 到http://redis.io/download中下载最新版的redis-3.0.7 下载后 ...
随机推荐
- iOS 点击按钮截屏
@interface CaptureViewController () @property (nonatomic, strong) UIImageView *backgrounView; //控制器背 ...
- 2018-8-10-wpf-绑定-DataGridTextColumn-
title author date CreateTime categories wpf 绑定 DataGridTextColumn lindexi 2018-08-10 19:16:53 +0800 ...
- ubuntu18.04 -- 创建第一个Django项目
step1: 安装虚拟环境: sudo pip3 install virtualenv # 安装虚拟环境sudo pip3 install virtualenvwrapper # 安装虚拟环境扩展包# ...
- CMakeLists.txt install
本部分是关于ros CMakeLists.txt install :可参考http://wiki.ros.org/catkin/CMakeLists.txt 1.CMakeLists.txt中的in ...
- 虚拟机设置静态IP地址
前言 NAT连接方式只能配置一次,配置好子网掩码和网关IP后,虚拟机NAT连接的ip段都是同一个ip段 1.菜单栏选择 编辑 -> 虚拟网络编辑器,打开虚拟网络编辑器对话框,选择Vmnet8 N ...
- SpringMvc返回给前端数据@ResponseBody响应体【支持Ajax】
1).在Controller中写 //@ResponseBody响应体是jackson包提供的 用于将Controller的方法返回的对象,通过HttpMessageConverter接口转换为指定格 ...
- 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 ...
- mongodb增删改查基础语法
转载:https://blog.csdn.net/u012206617/article/details/91047239 1. use DataBaseName 切换/创建数据库use mydb 2. ...
- Mysql 列变行其中一种做法。
需求是: 上班打卡记录 和 下班打卡记录 是分别是两条数据,现在是要合并为一条数据,并且封装成一个实体. 有可能是 只有上班记录,,或者是只有下班的记录.如何关联全查,一边为null或者另一边 ...
- Windows漏洞利用 ms17-010
漏洞名称 SMB 远程命令执行漏洞(ms17-010) 漏洞描述 继2016年 8 月份黑客组织 Shadow Brokers 放出第一批 NSA “方程式小组”内部黑客工具后,2017 年 4 月 ...