Redis连接
using System;
using System.Configuration;
using StackExchange.Redis; namespace Redis
{
public sealed class RedisDbContext
{
/// <summary>
/// Redis连接器
/// </summary>
private static Lazy<ConnectionMultiplexer> _lazyConnection; /// <summary>
/// Redis单例.
/// </summary>
/// <returns></returns>
public static IDatabase Instance()
{
return Instance(null);
} /// <summary>
/// Redis单例.
/// </summary>
/// <param name="connectionString">Redis服务器连接地址.</param>
/// <returns></returns>
public static IDatabase Instance(string connectionString)
{
return Instance(connectionString, );
} /// <summary>
/// Redis单例.
/// </summary>
/// <param name="connectionString">Redis服务器连接地址.</param>
/// <param name="db">Redis服务器数据库索引(0-10).</param>
/// <returns></returns>
/// <exception cref="System.ArgumentNullException">Redis服务器单例过程失败</exception>
public static IDatabase Instance(string connectionString, int db)
{
if (_lazyConnection == null)
{
lock (typeof(RedisDbContext))
{
if (_lazyConnection == null)
{
if (string.IsNullOrWhiteSpace(connectionString))
{
InitRedis();
}
else
{
InitRedis(connectionString);
}
}
}
} if (_lazyConnection == null)
{
throw new Exception("Redis服务器连接失败");
} return _lazyConnection.Value.GetDatabase(db);
} /// <summary>
/// 初始化Redis连接器.
/// </summary>
private static void InitRedis()
{
InitRedis(ConfigurationManager.AppSettings["RedisConnection"]);
} /// <summary>
/// 初始化Redis连接器.
/// </summary>
/// <param name="connectionString">Redis服务器连接地址.</param>
/// <exception cref="System.ArgumentNullException">Redis服务器连接地址ConnectionString未配置</exception>
private static void InitRedis(string connectionString)
{
if (string.IsNullOrEmpty(connectionString))
{
throw new ArgumentNullException("Redis服务器地址未配置");
} _lazyConnection = new Lazy<ConnectionMultiplexer>(
() => ConnectionMultiplexer.Connect(new ConfigurationOptions()
{
AbortOnConnectFail = false,
EndPoints = { connectionString }
}));
}
}
}
Redis连接的更多相关文章
- Redis 连接问题
.NET 中使用 StackExchange.Redis 我为什么想写这个,总感觉很多介绍相应技术的博客,只是把内容从官网搬到自己的博客中,没有任何的实践,这样会给想学的人,没有任何好处,也可能我是自 ...
- Redis 连接池的问题
目录 Redis 连接池的问题 1 1. 前言 1 2.解决方法 1 前言 问题描述:Redis跑了一段时间之后,出现了以下异常. Redis Timeout ex ...
- PHP- 深入PHP、Redis连接
pconnect, phpredis中用于client连接server的api. The connection will not be closed on close or end of reques ...
- Redis 连接
Redis 连接命令主要是用于连接 redis 服务. 实例 以下实例演示了客户端如何通过密码验证连接到 redis 服务,并检测服务是否在运行: redis 127.0.0.1:6379> ...
- Python连接Redis连接配置
1. 测试连接: Python 2.7.8 (default, Oct 20 2014, 15:05:19) [GCC 4.9.1] on linux2 Type "help", ...
- 2016022613 - redis连接命令集合
redis连接命令 1.ping 用途:检查服务器是否正在运行 返回数据pong,表示服务器在运行. 2.quit 用途:关掉当前服务器连接 3.auth password 用途:服务器验证密码 没有 ...
- 红眼技术博客 » redis连接池红眼技术博客 » redis连接池
红眼技术博客 » redis连接池 redis连接池
- redis连接池操作
/** * @类描述 redis 工具 * @功能名 POJO * @author zxf * @date 2014年11月25日 */public final class RedisUtil { p ...
- java操作redis redis连接池
redis作为缓存型数据库,越来越受到大家的欢迎,这里简单介绍一下java如何操作redis. 1.java连接redis java通过需要jedis的jar包获取Jedis连接. jedis-2.8 ...
- 三:Redis连接池、JedisPool详解、Redisi分布式
单机模式: package com.ljq.utils; import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; ...
随机推荐
- 你必须知道的HTTP错误
发送网络请求有时失败,分析一下响应行,在响应的响应行内,你会发现响应行由三部分组成,用空格来隔开,HTTP/1.1 404 NOT FOUND,第一个是响应的HTTP的版本,第二个和第三个是状态值. ...
- CentOS如何查看硬盘品牌型号等具体信息
首先使用smartctl --all /dev/sda 指令来检查硬盘信息,该指令CentOS自带,得到的结果可能如下: smartctl 5.43 2012-06-30 r3573 [x86_64- ...
- 原创 C++作用域 (一)
1概述 在所有的计算机程序中,一个基本的目标是操作一些数据,然后获得一些结果.为了操作这些数据,需要为这些数据分配一段内存,我们可以将这段内存称为变量.为了方便操作,以及程序可读性方面的考虑,需要使用 ...
- 返回人民币大写方式(num2rmb)
CREATE OR REPLACE FUNCTION num2rmb(Pi_MONEY NVARCHAR2) RETURN NVARCHAR2 IS -- PURPOSE :返回人民币大写方式 v_N ...
- windows系统下fis3安装教程
注意:在安装fis3前必须安装node和npm,详情请见官网http://nodejs.org node版本要求 0.8.x,0.10.x, 0.12.x,4.x,6.x,不在此列表中的版本不予支持. ...
- Go语言开发第一个Hello,World
在网上看到go语言的各种评价,也是闻名已久,但是没有自己实践过,也不知道它的好,它的坏,今天就来试试第一个小程序 第一步.如何下载 1)下载go安装程序 下载地址:https://golang.org ...
- [LeetCode] Count The Repetitions 计数重复个数
Define S = [s,n] as the string S which consists of n connected strings s. For example, ["abc&qu ...
- [LeetCode] Partition Equal Subset Sum 相同子集和分割
Given a non-empty array containing only positive integers, find if the array can be partitioned into ...
- [LeetCode] Linked List Random Node 链表随机节点
Given a singly linked list, return a random node's value from the linked list. Each node must have t ...
- [LeetCode] Wiggle Sort II 摆动排序
Given an unsorted array nums, reorder it such that nums[0] < nums[1] > nums[2] < nums[3]... ...