我在工作中遇到的redis集群使用
写次随笔,给自己工作学习中记录一个笔记
废话不多说,直接上代码:
功能:将相关信息存到redis中,并设置过期时间,如果redis中有,从redis获取,如果没有,从mysql中获取。redis配置了三台集群环境
1:首先,是配置文件中相关配置信息,在java代码中,相关配置直接从配置文件中读取:
#redis配置
MaxActive=10
#最大空闲连接数
MaxIdle=5
#最小空闲连接数
MinIdle=3
#最大连接数
MaxTotal=8
#jedis集群地址A
JedisA.host=192.168.0.191
portA=6300
#jedis集群地址B
JedisB.host=192.168.0.192
portB=6300
#jedis集群地址C
JedisC.host=192.168.0.193
portC=6300
#是否先进先出
Lifo=true
#在获取连接的时候检查有效性, 默认false
TestOnBorrow=false
#用returnObject方法时,是否进行有效检查
TestOnReturn=false
#获取连接时的最大等待毫秒数
MaxWaitMillis=-1
#在空闲时检查有效性
TestWhileIdle=false
#逐出扫描的时间间隔
TimeBetweenEvictionRunsMillis=-1
#每次逐出检查时 逐出的最大数目
NumTestsPerEvictionRun=3
#逐出连接的最小空闲时间,默认10分钟
TimeMillis=600000
#用户信息过期时间为1天
userPastTime=86400
#分割时间设置过期为5分钟
LoanPastTime=300
#产品过期时间
ProductPastTime=60
2:在项目启动的时候,对redis进行初始化:
//redis初始化,JedisPoolConfig为jedis的参数对象,redis在java里封装的对象时redis,参数信息从配置文件读取
//redis初始化
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxIdle(Integer.parseInt(BusinessService.getInstance().getParameter("MaxIdle")));
config.setMaxTotal(Integer.parseInt(BusinessService.getInstance().getParameter("MaxTotal")));
config.setMinIdle(Integer.parseInt(BusinessService.getInstance().getParameter("MinIdle")));
config.setLifo(Boolean.parseBoolean(BusinessService.getInstance().getParameter("Lifo")));
config.setMinEvictableIdleTimeMillis(Long.parseLong(BusinessService.getInstance().getParameter("TimeMillis")));
config.setTestOnBorrow(Boolean.parseBoolean(BusinessService.getInstance().getParameter("TestOnBorrow")));
config.setTestOnReturn(Boolean.parseBoolean(BusinessService.getInstance().getParameter("TestOnReturn")));
config.setMaxWaitMillis(Long.parseLong(BusinessService.getInstance().getParameter("MaxWaitMillis")));
config.setTestWhileIdle(Boolean.parseBoolean((BusinessService.getInstance().getParameter("TestWhileIdle"))));
config.setTimeBetweenEvictionRunsMillis(Long.parseLong(BusinessService.getInstance().getParameter("TimeBetweenEvictionRunsMillis")));
config.setNumTestsPerEvictionRun(Integer.parseInt(BusinessService.getInstance().getParameter("NumTestsPerEvictionRun")));
//RedisUtils(config)为工具类,在初始化的时候调用一次,对jedis对象进行初始化
new RedisUtils(config);
3:RedisUtils类
public RedisUtils(JedisPoolConfig config)
{ synchronized(this)
{
if(jedisCluster==null)
{
Set<HostAndPort> jedisClusterNodes = new HashSet<HostAndPort>();
jedisClusterNodes.add(new HostAndPort(BusinessService.getInstance().getParameter("JedisA.host"), Integer.parseInt(BusinessService.getInstance().getParameter("portA"))));
jedisClusterNodes.add(new HostAndPort(BusinessService.getInstance().getParameter("JedisB.host"), Integer.parseInt(BusinessService.getInstance().getParameter("portB"))));
jedisClusterNodes.add(new HostAndPort(BusinessService.getInstance().getParameter("JedisC.host"), Integer.parseInt(BusinessService.getInstance().getParameter("portC"))));
jedisCluster = new JedisCluster(jedisClusterNodes,2000,2000,config);
}
} }
4:jedisCluster存值
/**
*
* @author weishaolong
* @date 2016-3-29 下午5:13:10 输入参数
* @param key key
* @param seconds 有效时间 单位秒
* @param strValue 值
*/
public static void setJedis(String key,int seconds,String strValue)
{
try
{
jedisCluster.setex(key,seconds,strValue); }
catch(Exception e)
{
log.error("Redis存值异常!By:RedisUtils.setJedis"+e.toString());
} }
5:jedisCluster取值
public static String getJedisValue(String key)
{
String strJedisVal = null;
try
{
strJedisVal=jedisCluster.get(key);
return strJedisVal;
}
catch(Exception e)
{
log.error("Redis取值异常!By:RedisUtils.getJedisValue"+e.toString());
}
return strJedisVal; }
6:这样,使用jedisCluster就可以进行使用了,java业务代码直接RedisUtils.getJedisValue("");就可以获取值了
7:其中集群还可以使用ShardJedisPool,但是ShardJedisPool我一直报
jedis.exceptions.JedisMovedDataException: MOVED 632 192.168.0.192:6301,
报这个错的原因:ShardJedisPool是分片处理的,当为集群环境的时候,是不支持路由的,所以会报数据迁移失败
初始化:
List<JedisShardInfo> jdsInfoList =new ArrayList<JedisShardInfo>(3);
JedisShardInfo infoA = new JedisShardInfo(BusinessService.getInstance().getParameter("JedisA.host"),
Integer.parseInt(BusinessService.getInstance().getParameter("portA")));
JedisShardInfo infoB = new JedisShardInfo(BusinessService.getInstance().getParameter("JedisB.host"),
Integer.parseInt(BusinessService.getInstance().getParameter("portB")));
JedisShardInfo infoC = new JedisShardInfo(BusinessService.getInstance().getParameter("JedisC.host"),
Integer.parseInt(BusinessService.getInstance().getParameter("portC")));
jdsInfoList.add(infoA);
jdsInfoList.add(infoB);
jdsInfoList.add(infoC);
ShardJedisPool =new ShardedJedisPool(config, jdsInfoList);
存值:
public static void setJedis(String key,int seconds,String strValue)
{
try
{
ShardedJedis shardJedis=ShardJedisPool.getResource();
shardJedis.setex(key,seconds,strValue);
ShardJedisPool.returnResourceObject(shardJedis); }
catch(Exception e)
{
log.error("Redis存值异常!By:RedisUtils.setJedis"+e.toString());
} }
取值:
public static String getJedisValue(String key)
{
String strJedisVal = null;
try
{
ShardedJedis shardJedis=ShardJedisPool.getResource();
strJedisVal=shardJedis.get(key);
ShardJedisPool.returnResourceObject(shardJedis);
return strJedisVal;
}
catch(Exception e)
{
log.error("Redis取值异常!By:RedisUtils.getJedisValue"+e.toString());
}
return strJedisVal; }
最后,要注意一点:ShardJedisPool是一个连接池,和mysql的连接池是很类似的,每次从池子中获取值之后,要记得把这个连接返还给池子
ShardJedisPool.returnResourceObject(redis);
项目停止的时候,关闭连接池
public static void closeJedisPool()
{
if(ShardJedisPool!=null){
ShardJedisPool.destroy();
}
}
好了,主要是代码层次的讲解,原理方面没怎么说,后期进行补充....
我在工作中遇到的redis集群使用的更多相关文章
- redis 集群
http://www.linuxidc.com/Linux/2015-08/121845.htm Redis3.0版本之后支持Cluster,具体介绍redis集群我就不多说,了解请看redis中文简 ...
- Redis集群简记
Redis集群 http://doc.redisfans.com/topic/cluster-tutorial.html redis 集群是为了多个节点之间数据的共享和集群高可用的保证. redis ...
- SpringBoot系列教程之Redis集群环境配置
之前介绍的几篇redis的博文都是基于单机的redis基础上进行演示说明的,然而在实际的生产环境中,使用redis集群的可能性应该是大于单机版的redis的,那么集群的redis如何操作呢?它的配置和 ...
- redis集群搭建及一些问题
redis 1.简化版redis (本套Redis集群为简化版安装部署,只需解压至普通用户家目录下或者任意目录,解压后修改脚本,执行脚本后即可使用.) 注意,此版本需要在redis配置文件中添加 pr ...
- Redis 集群规范
什么是 Redis 集群??Redis 集群是一个分布式(distributed).容错(fault-tolerant)的 Redis 实现,集群可以使用的功能是普通单机 Redis 所能使用的功能的 ...
- redis集群安装2
概要:本文主要介绍如何在Centos7中单机搭建redis集群三主三从,按照本文绝对可以实现该需求,至于先搭建单机版主要为了方便理解redis集群,为下一步开发或生产上redis集群做铺垫.同时本 ...
- <正则吃饺子> :关于redis集群的搭建、集群测试、搭建中遇到的问题总结
项目中使用了redis ,对于其基本的使用,相对简单些,根据项目中已经提供的工具就可以实现基本的功能,但是只是这样的话,对于redis还是太肤浅,甚至刚开始时候,集群.多节点.主从是什么,他们之间是什 ...
- LINUX:关于Redis集群搭建 、和搭建项目中遇到的问题
文章来源:http://www.cnblogs.com/hello-tl/p/7804225.html 0.Redis的简单安装 1.安装redis依赖 # yum install gcc tcl g ...
- 7.redis 集群模式的工作原理能说一下么?在集群模式下,redis 的 key 是如何寻址的?分布式寻址都有哪些算法?了解一致性 hash 算法吗?
作者:中华石杉 面试题 redis 集群模式的工作原理能说一下么?在集群模式下,redis 的 key 是如何寻址的?分布式寻址都有哪些算法?了解一致性 hash 算法吗? 面试官心理分析 在前几年, ...
随机推荐
- 第一个spring boot工程
参考. 1. 碰到的问题: -出现bind:address already in use是因为当前项目正在运行,停掉当前项目即可.cmd中命令 netstat -nao 查看所有占用的端口及PID号, ...
- QRCode二维码生成方案及其在带LOGO型二维码中的应用(1)
原文:QRCode二维码生成方案及其在带LOGO型二维码中的应用(1) 提要:很多公司为商业宣传之需,常将企业LOGO加入二维码中,但如果LOGO遮挡区域足够地大,二维码就变得无法识别.那么,有没有一 ...
- QT Linux Demo程序编译
我手上的qt源码包为:qt-everywhere-opensource-src-4.7.0.tar.gz 在Linux下编译比较容易,解压后直接 ./configure,一般会报缺少什么库这些.自己遇 ...
- python 编码转换 专题
主要介绍了python的编码机制,unicode, utf-8, utf-16, GBK, GB2312,ISO-8859-1 等编码之间的转换. 常见的编码转换分为以下几种情况: 自动识别 字符串编 ...
- Win8Metro(C#)数字图像处理--2.20图像垂直镜像
原文:Win8Metro(C#)数字图像处理--2.20图像垂直镜像 [函数名称] 图像垂直镜像函数MirrorYProcess(WriteableBitmap src) [函数代码] ...
- WPF ListView 数据懒加载
实现方式:当滑动条触底时,加载数据 xaml代码: <ListView ScrollViewer.ScrollChanged="ListView_ScrollChanged" ...
- ORACLE 11.2.0.4 安装在 rhel6 上
. 修改host文件,添加本机的host记录 [root@RACDG ~]# vi /etc/hosts 127.0.0.1 localhost localhost.localdomain local ...
- Survey Report on Data Skew in Big Data
1 Introduction 信息时代产生了大量的数据,运用和使用数据已经成为一个公司乃至一个国家核心实力的重要组成部分.当代大数据一般指的是:数据量巨大,需要运用新处理模式才能具有更强的决策力.洞察 ...
- delphi 在多线程中使用 CreateOleObject 导致失败(一定要使用CoInitialize和CoUninitialize,举例查询WMI)
原帖地址 http://bbs.csdn.net/topics/390481350 解决办法 procedure DisplayVideoInfo; var wmi, objs, obj : OleV ...
- 编译Qt5.0连接MySql5.5数据库的驱动(5.0版本的编译,我记得5.2开始自带了)
第一步 1.准备好Mysql数据库安装文件,Qt5.0完整的离线安装包,以及Qt5.0的完整的源代码.安装好程序,假设Mysql的安装路径为:C:\MySQL5.5,Qt5.0的安装路径:C:\Qt\ ...