package com.util;

import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Set; import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import redis.clients.jedis.HostAndPort;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisCluster;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig; public class JedisUtil { private static Jedis jedis;
private static final String PREFIX = "ll_idea";
private static final Logger logger = LoggerFactory.getLogger(JedisUtil.class); // Redis服务器IP
private static String ADDR_ARRAY = "127.0.0.1,192.168.241.132";// FileUtil.getPropertyValue("/properties/redis.properties",
// "server"); // Redis的端口号
private static int PORT = 6379;// FileUtil.getPropertyValueInt("/properties/redis.properties",
// "port"); // 访问密码
// private static String AUTH =
// FileUtil.getPropertyValue("/properties/redis.properties", "auth"); // 可用连接实例的最大数目,默认值为8;
// 如果赋值为-1,则表示不限制;如果pool已经分配了maxActive个jedis实例,则此时pool的状态为exhausted(耗尽)。
private static int MAX_ACTIVE = 1000;// FileUtil.getPropertyValueInt("/properties/redis.properties",
// "max_active");; // 控制一个pool最多有多少个状态为idle(空闲的)的jedis实例,默认值也是8。
private static int MAX_IDLE = 8;// FileUtil.getPropertyValueInt("/properties/redis.properties",
// "max_idle");; // 等待可用连接的最大时间,单位毫秒,默认值为-1,表示永不超时。如果超过等待时间,则直接抛出JedisConnectionException;
private static int MAX_WAIT = -1;// FileUtil.getPropertyValueInt("/properties/redis.properties",
// "max_wait");; // 超时时间 毫秒
private static int TIMEOUT = 100000;// FileUtil.getPropertyValueInt("/properties/redis.properties",
// "timeout");; // 在borrow一个jedis实例时,是否提前进行validate操作;如果为true,则得到的jedis实例均是可用的;
private static boolean TEST_ON_BORROW = true;// FileUtil.getPropertyValueBoolean("/properties/redis.properties",
// "test_on_borrow");; private static JedisPool jedisPool = null; /**
* 初始化Redis连接池
*/
private static void initialPool() {
try {
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxTotal(MAX_ACTIVE);
config.setMaxIdle(MAX_IDLE);
config.setMaxWaitMillis(MAX_WAIT);
config.setTestOnBorrow(TEST_ON_BORROW);
jedisPool = new JedisPool(config, ADDR_ARRAY.split(",")[0], PORT, TIMEOUT);
} catch (Exception e) {
logger.error("First create JedisPool error : " + e);
try {
// 如果第一个IP异常,则访问第二个IP
JedisPoolConfig config = new JedisPoolConfig();
config.setMaxTotal(MAX_ACTIVE);
config.setMaxIdle(MAX_IDLE);
config.setMaxWaitMillis(MAX_WAIT);
config.setTestOnBorrow(TEST_ON_BORROW);
jedisPool = new JedisPool(config, ADDR_ARRAY.split(",")[1], PORT, TIMEOUT);
} catch (Exception e2) {
logger.error("Second create JedisPool error : " + e2);
}
}
} /**
* 在多线程环境同步初始化
*/
private static synchronized void poolInit() {
if (jedisPool == null) {
initialPool();
}
} /**
* 同步获取Jedis实例
*
* @return Jedis
*/
public synchronized static Jedis getJedis() {
if (jedisPool == null) {
poolInit();
}
Jedis jedis = null;
try {
if (jedisPool != null) {
jedis = jedisPool.getResource();
}
} catch (Exception e) {
logger.error("Get jedis error : " + e);
} finally {
returnResource(jedis);
}
return jedis;
} /**
* 释放jedis资源 jedispool returnresource 废弃 用 colose代码 3.0
*
* @param jedis
*/
public static void returnResource(final Jedis jedis) {
if (jedis != null && jedisPool != null) {
jedis.close();
}
} public static Jedis getJedis(String host_ip, int host_port) {
jedis = new Jedis(host_ip, host_port);
// jedis.auth("admin.123"); //开启密码验证(配置文件中为 requirepass root)的时候需要执行该方法
return jedis;
} public static Jedis getDefaultJedis() {
// return getJedis(HOST_IP, HOST_PORT);//简装版 return getJedis();
} /**
* 清空 redis 中的所有数据
*/
public static String flushRedis() {
logger.debug("flush redis data");
return getDefaultJedis().flushDB();
} /**
* 根据 pattern 获取 redis 中的键
*/
public static Set<String> getKeysByPattern(String pattern) {
return getDefaultJedis().keys(pattern);
} /**
* 获取 redis 中所有的键
*/
public static Set<String> getAllKeys() {
return getKeysByPattern("*");
} /**
* 判断key是否存在redis中
*/
public static boolean exists(String key) throws Exception { if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
} return getDefaultJedis().exists(PREFIX + key);
} /**
* 从Redis中移除一个key
*/
public static void del(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
getDefaultJedis().del(PREFIX + key);
} // ======================String 类型接口====================================== /**
* 存储字符串
*/
public static void setString(String key, String value, int expireTime) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
} String finalKey = PREFIX + key;
getDefaultJedis().set(finalKey, value);
if (expireTime > 0) {
/**
* 如果设置了 expireTime, 那么这个 finalKey会在expireTime秒后过期,那么该键会被自动删除
* 这一功能配合出色的性能让Redis可以作为缓存系统来使用,成为了缓存系统Memcached的有力竞争者
*/
getDefaultJedis().expire(finalKey, expireTime);
}
} /**
* 获取字符串
*/
public static String getString(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().get(PREFIX + key);
} public static long setnx(String key, String value) throws Exception { if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
} return getDefaultJedis().setnx(PREFIX + key, value);
} public static long expire(String key, int seconds) throws Exception { if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
} return getDefaultJedis().expire(PREFIX + key, seconds);
} // ========================List类型接口==========================
/**
* 存储 List
*/
public static void pushList(String key, String value, String flag) throws Exception {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(flag)) {
logger.error("key or flag is null");
throw new Exception("key or flag is null");
} /**
* key代表的是链表的名字 List是一个双端链表,lpush是往链表的头部插入一条数据,rpush是往尾部插入一条数据
*/
if (flag.equalsIgnoreCase("L")) {
getDefaultJedis().lpush(PREFIX + key, value);
} else if (flag.equalsIgnoreCase("R")) {
getDefaultJedis().rpush(PREFIX + key, value);
} else {
logger.error("unknown flag");
throw new Exception("unknown flag");
}
} /**
* 获取 List 中的单个元素
*/
public static String popList(String key, String flag) throws Exception {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(flag)) {
logger.error("key or flag is null");
throw new Exception("key or flag is null");
} if (flag.equalsIgnoreCase("L")) {
return getDefaultJedis().lpop(PREFIX + key);
} else if (flag.equalsIgnoreCase("R")) {
return getDefaultJedis().rpop(PREFIX + key);
} else {
logger.error("unknown flag");
throw new Exception("unknown flag");
}
} /**
* 获取 List 中指定区间上的元素
*/
public static List<String> getAppointedList(String key, long start, long end) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().lrange(PREFIX + key, start, end);
} /**
* 获取 List 上所有的元素
*/
public static List<String> getList(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().lrange(PREFIX + key, 0, -1);
} /**
* 获取 List 的长度
*/
public static long getListLength(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().llen(PREFIX + key);
} // =====================Set类型接口==================
/**
* 存储 Set : 单值存储
*/
public static void addValueToSet(String key, String value) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
getDefaultJedis().sadd(PREFIX + key, value);
} /**
* 存储 Set : 多值存储
*/
public static void addListToSet(String key, List<String> values) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
for (String value : values) {
getDefaultJedis().sadd(PREFIX + key, value);
}
} /**
* 删除 Set 中的某个元素
*/
public static void deleteElementInSet(String key, String value) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
getDefaultJedis().srem(PREFIX + key, value);
} /**
* 获取 Set 中所有的成员
*/
public static Set<String> getSet(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().smembers(PREFIX + key);
} /**
* 判断 value 是否属于 set
*/
public static boolean isExistInSet(String key, String value) throws Exception {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(value)) {
logger.error("key or value is null");
throw new Exception("key or value is null");
}
return getDefaultJedis().sismember(PREFIX + key, value);
} /**
* 获取 Set 中元素个数
*/
public static long getLengthOfSet(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().scard(PREFIX + key);
} /**
* 取两个 Set 的交集
*/
public static Set<String> getSetInter(String key1, String key2) throws Exception {
if (StringUtils.isEmpty(key1) || StringUtils.isEmpty(key2)) {
logger.error("key1 or key2 is null");
throw new Exception("key1 or key2 is null");
}
return getDefaultJedis().sinter(PREFIX + key1, PREFIX + key2);
} /**
* 取两个 Set 的并集
*/
public static Set<String> getSetUnion(String key1, String key2) throws Exception {
if (StringUtils.isEmpty(key1) || StringUtils.isEmpty(key2)) {
logger.error("key1 or key2 is null");
throw new Exception("key1 or key2 is null");
}
return getDefaultJedis().sunion(PREFIX + key1, PREFIX + key2);
} /**
* 取两个 Set 的差集
*/
public static Set<String> getSetDiff(String key1, String key2) throws Exception {
if (StringUtils.isEmpty(key1) || StringUtils.isEmpty(key2)) {
logger.error("key1 or key2 is null");
throw new Exception("key1 or key2 is null");
}
return getDefaultJedis().sdiff(PREFIX + key1, PREFIX + key2);
} // ==================================SortedSet类型接口
/**
* 存储有序集合 SortedSet
*/
public static void setSortedSet(String key, double weight, String value) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
getDefaultJedis().zadd(PREFIX + key, weight, value);
} /**
* 获取有序集合指定区间上的元素
*/
public static Set<String> getAppointedSortedSet(String key, long start, long end) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().zrange(PREFIX + key, start, end);
} /**
* 获取有序集合上的所有元素
*/
public static Set<String> getSortedSet(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().zrange(PREFIX + key, 0, -1);
} /**
* 获取有序集合上某个权重区间上的元素
*/
public static long getLengthOfSortedSetByWeight(String key, double min, double max) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().zcount(PREFIX + key, min, max);
} /**
* 删除有序集合上的元素
*/
public static void deleteElementInSortedSet(String key, String value) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
getDefaultJedis().zrem(PREFIX + key, value);
} /**
* 获取有序集合中元素的个数
*/
public static long getLengthOfSortedSet(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().zcard(PREFIX + key);
} /**
* 查看有序集合中元素的权重
*/
public static double getWeight(String key, String value) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().zscore(PREFIX + key, value);
} // ========================hash 类型接口==============
/**
* 存储 HashMap
*/
public static void setHashMapByFieldAndValue(String key, String field, String value) throws Exception {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(field)) {
logger.error("key or field is null");
throw new Exception("key or field is null");
}
getDefaultJedis().hset(PREFIX + key, field, value);
} /**
* 存储 HashMap
*/
public static void setHashMapByMap(String key, Map<String, String> map) throws Exception {
if (StringUtils.isEmpty(key) || map == null) {
logger.error("key or map is null");
throw new Exception("key or map is null");
}
getDefaultJedis().hmset(PREFIX + key, map);
} /**
* 删除 HashMap 中的键值对
*/
public static void deleteHashMapValueByField(String key, String field) throws Exception {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(field)) {
logger.error("key or field is null");
throw new Exception("key or field is null");
}
getDefaultJedis().hdel(PREFIX + key, field);
} /**
* 获取 HashMap 中键对应的值
*/
public static String getHashMapValueByField(String key, String field) throws Exception {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(field)) {
logger.error("key or field is null");
throw new Exception("key or field is null");
}
return getDefaultJedis().hget(PREFIX + key, field);
} /**
* 获取 HashMap 中所有的 key
*/
public static Set<String> getHashMapKeys(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().hkeys(PREFIX + key);
} /**
* 获取 HashMap 中所有的值
*/
public static List<String> getHashMapValues(String key) throws Exception {
if (StringUtils.isEmpty(key)) {
logger.error("key is null");
throw new Exception("key is null");
}
return getDefaultJedis().hvals(PREFIX + key);
} /**
* 判断 HashMap 中是否存在某一个键
*/
public static boolean isFieldExistsInHashMap(String key, String field) throws Exception {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(field)) {
logger.error("key or field is null");
throw new Exception("key or field is null");
}
return getDefaultJedis().hexists(PREFIX + key, field);
} public static long lpush(String key, String value) {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(value)) {
logger.error("key or field is null");
} return getDefaultJedis().lpush(key, value);
} public static long rpush(String key, String value) {
if (StringUtils.isEmpty(key) || StringUtils.isEmpty(value)) {
logger.error("key or field is null");
} return getDefaultJedis().rpush(key, value);
} public static String lpop(String key) {
if (StringUtils.isEmpty(key)) {
logger.error("key or field is null");
} return getDefaultJedis().lpop(key);
} public static String rpop(String key) {
if (StringUtils.isEmpty(key)) {
logger.error("key or field is null");
} return getDefaultJedis().rpop(key);
} static { getDefaultJedis().lpush("key1", "123");
getDefaultJedis().lpush("key1", "456");
getDefaultJedis().lpush("key1", "789");
getDefaultJedis().lpush("key1", "012"); } public static void main(String[] args) throws Exception {
Set<HostAndPort> jedisClusterNodes = new HashSet<HostAndPort>();
//在添加集群节点的时候只需要添加一个,其余同一集群的节点会被自动加入
jedisClusterNodes.add(new HostAndPort("192.168.241.132", 7000));
JedisCluster jc = new JedisCluster(jedisClusterNodes);
jc.set("rediskey", "redisvalue_123");
String value = jc.get("rediskey");
System.out.println(value); }
}

  

redis3.2 Jedis java操作的更多相关文章

  1. Redis学习(5)-Jedis(Java操作redis数据库技术)

    Java连接redis 一,导入jar包 Redis有什么命令,Jedis就有什么方法 设置防火墙 在Linux上面运行如下代码: 单实例:Jedis实例: package com.jedis.dem ...

  2. java操作redis之jedis篇

    首先来简单介绍一下jedis,其实一句话就可以概括的,就是java操作redis的一种api.我们知道redis提供了基本上所有常用编程语言的clients,大家可以到http://redis.io/ ...

  3. Redis入门(四)-Java操作Redis

    <Redis入门>系列文章的第四篇,这一节看一下如何用Java版本的redis客户端工具--Jedis来操作redis. Jedis封装了丰富的api来对redis的五种数据类型 stri ...

  4. Redis java操作客户端

    Jedis常用操作 1.测试连通性 Jedis jedis = new Jedis("192.168.1.201",6380,10000); System.out.println( ...

  5. java 操作redis

    使用Java操作Redis需要jedis-2.1.0.jar,如果需要使用Redis连接池的话,还需commons-pool-1.5.4.jar package com.test; import ja ...

  6. windows下Redis安装及利用java操作Redis

    一.windows下Redis安装 1.Redis下载 下载地址:https://github.com/MicrosoftArchive/redis 打开下载地址后,选择版本 然后选择压缩包 下载 R ...

  7. java操作redis集群配置[可配置密码]和工具类(比较好用)

    转: java操作redis集群配置[可配置密码]和工具类 java操作redis集群配置[可配置密码]和工具类     <dependency>   <groupId>red ...

  8. java操作redis集群配置[可配置密码]和工具类

    java操作redis集群配置[可配置密码]和工具类     <dependency>   <groupId>redis.clients</groupId>   & ...

  9. Linux+Redis实战教程_day02_3、redis数据类型_4、String命令_5、hash命令_6、java操作redis数据库技术

    3. redis数据类型[重点] redis 使用的是键值对保存数据.(map) key:全部都是字符串 value:有五种数据类型 Key名:自定义,key名不要过长,否则影响使用效率 Key名不要 ...

随机推荐

  1. 解决linux系统启动之:unexpected inconsistency:RUN fsck

    现象: 虚拟机在启动过程中提示: unexpected inconsistency;RUN fsck MANUALLY 原因分析: 1.由于意外关机导致的文件系统问题 解决方法: 方法1: 输入ROO ...

  2. TFS二次开发系列:三、TFS二次开发的第一个实例

    首先我们需要认识TFS二次开发的两大获取服务对象的类. 他们分别为TfsConfigurationServer和TfsTeamProjectCollection,他们的不同点在于可以获取不同的TFS ...

  3. 【Javascript】解决Ajax轮询造成的线程阻塞问题(过渡方案)

    一.背景 开发Web平台时,经常会需要定时向服务器轮询获取数据状态,并且通常不仅只开一个轮询,而是根据业务需要会产生数个轮询.这种情况下,性能低下的Ajax长轮询已经不能满足需求,频繁的访问还会造成线 ...

  4. iOS ARC 下的单例模式

    #import <Foundation/Foundation.h> @interface RYSingleExample : NSObject<NSCopying> +(ins ...

  5. x86平台转x64平台关于内联汇编不再支持的解决

    x86平台转x64平台关于内联汇编不再支持的解决     2011/08/25   把自己碰到的问题以及解决方法给记录下来,留着备用!   工具:VS2005  编译器:cl.exe(X86 C/C+ ...

  6. EasyAR 开发教程系列1--小试牛刀

    大家好,我是Albert Lee(@Mars Studio),AR独立开发者.计算机视觉与人工智能研究者. AR 开发资源汇总(不断更新中):https://github.com/GeekLiB 微信 ...

  7. zookeeper原理及作用

    ZooKeeper是Hadoop Ecosystem中非常重要的组件,它的主要功能是为分布式系统提供一致性协调(Coordination)服务,与之对应的Google的类似服务叫Chubby.今天这篇 ...

  8. 超详细的Xcode代码格式化教程,可自定义样式

    为什么要格式化代码 当团队内有多人开发的时候,每个人写的代码格式都有自己的喜好,也可能会忙着写代码而忽略了格式的问题. 在之前,我们可能会写完代码后,再一点一点去调格式,很浪费时间. 有了ClangF ...

  9. 中间人攻击(MITM)姿势总结

    相关学习资料 http://www.cnblogs.com/LittleHann/p/3733469.html http://www.cnblogs.com/LittleHann/p/3738141. ...

  10. SpringMVC介绍之Validation

    对于任何一个应用而言在客户端做的数据有效性验证都不是安全有效的,这时候就要求我们在开发的时候在服务端也对数据的有效性进行验证.SpringMVC自身对数据在服务端的校验有一个比较好的支持,它能将我们提 ...