详谈Jedis连接池的使用

1、构建redis连接池,返还到连接池

private static JedisPool jedisPool = null;
private static Jedis jedis;

static {
  jedis = getJedisPool().getResource();
}

/**
 * 构建redis连接池
 */
public static JedisPool getJedisPool() {
  if (jedisPool == null) {
    JedisPoolConfig config = new JedisPoolConfig();
    config.setMaxTotal(1024); // 可用连接实例的最大数目,如果赋值为-1,表示不限制.
    config.setMaxIdle(5); // 控制一个Pool最多有多少个状态为idle(空闲的)jedis实例,默认值也是8
    config.setMaxWaitMillis(1000 * 100); // 等待可用连接的最大时间,单位毫秒,默认值为-1,表示永不超时/如果超过等待时间,则直接抛出异常
    config.setTestOnBorrow(true); // 在borrow一个jedis实例时,是否提前进行validate操作,如果为true,则得到的jedis实例均是可用的
    jedisPool = new JedisPool(config, "127.0.0.1", 6379);
  }
  return jedisPool;
}

/**
 * 释放jedis资源
 */
public static void returnResource(Jedis jedis) {
  if (jedis != null) {
    jedis.close();
  }
}

2、 jedis使用

典型的jedis使用方法

public static String get(String key) {
  String value = null;
  Jedis jedis = null;
  try {
    JedisPool pool = getJedisPool();
    jedis = pool.getResource();
    value = jedis.get(key);
  }
  catch (Exception e) {
    returnResource(jedis);
    e.printStackTrace();
  }
  finally {
    returnResource(jedis);
  }
  return value;
}

这种写法会经常忘记返回jedis到pool.参考Spting JdbcTemplate的实现方式,优化如下

优化jedis使用方法

public static String getByTemplate(final String key) {
  RedisTemplate redisTemplate = new RedisTemplate(getJedisPool());
  String value = redisTemplate.execute(new RedisCallback<String>() {
    @Override
    public String handle(Jedis jedis) {
      return jedis.get(key);
    }
  });
  return value;
}

RedisTemplate封装了从JedisPool中取jedis以及返回池中

public class RedisTemplate {

  private JedisPool jedisPool;

  public RedisTemplate(JedisPool jedisPool) {
    this.jedisPool = jedisPool;
  }

  public <T> T execute(RedisCallback<T> callback) {
    Jedis jedis = jedisPool.getResource();
    try {
      return callback.handle(jedis);
    }
    catch (Exception e) {
      // throw your exception
      throw e;
    }
    finally {
      returnResource(jedis);
    }
  }

  private void returnResource(Jedis jedis) {
    if (jedis != null) {
      jedis.close();
    }
  }
}
public interface RedisCallback<T> {
  public T handle(Jedis jedis);
}

常用的jedis方法

字符串

@Test
public void testString() {
  jedis.set("name", "webb"); // 添加数据
  System.out.println("name -> " + jedis.get("name"));

  jedis.append("name", " , javaer"); // 拼接
  System.out.println("name -> " + jedis.get("name"));

  jedis.del("name"); // 删除数据
  System.out.println("name -> " + jedis.get("name"));

  jedis.mset("name", "webb", "age", "24"); // 设置多个键值对
  jedis.incr("age"); // 进行加1操作

  System.out.println("name -> " + jedis.get("name") + ", age -> " + jedis.get("age"));
}

列表

@Test
public void testList() {
  String key = "java framework";

  jedis.lpush(key, "spring");
  jedis.lpush(key, "spring mvc");
  jedis.lpush(key, "mybatis");

  System.out.println(jedis.lrange(key, 0 , -1)); // -1表示取得所有

  jedis.del(key);
  jedis.rpush(key, "spring");
  jedis.rpush(key, "spring mvc");
  jedis.rpush(key, "mybatis");

  System.out.println(jedis.lrange(key, 0 , -1)); // -1表示取得所有

  System.out.println(jedis.llen(key)); // 列表长度
  System.out.println(jedis.lrange(key, 0, 3));
  jedis.lset(key, 0 , "redis"); // 修改列表中单个值
  System.out.println(jedis.lindex(key, 1)); // 获取列表指定下标的值
  System.out.println(jedis.lpop(key)); // 列表出栈
  System.out.println(jedis.lrange(key, 0 , -1)); // -1表示取得所有
}

散列

@Test
public void testMap() {
  String key = "user";

  Map<String, String> map = new HashMap<>();
  map.put("name", "webb");
  map.put("age", "24");
  map.put("city", "hangzhou");

  jedis.hmset(key, map); // 添加数据

  List<String> rsmap = jedis.hmget(key, "name", "age", "city"); // 第一个参数存入的是redis中map对象的key,后面跟的是放入map中的对象的key
  System.out.println(rsmap);

  jedis.hdel(key, "age"); // 删除map中的某个键值

  System.out.println(jedis.hmget(key, "age"));
  System.out.println(jedis.hlen(key)); // 返回key为user的键中存放的值的个数
  System.out.println(jedis.exists(key)); // 是否存在key为user的记录
  System.out.println(jedis.hkeys(key)); // 返回map对象中的所有key
  System.out.println(jedis.hvals(key)); // 返回map对象中所有的value

  Iterator<String> iterator = jedis.hkeys("user").iterator();

  while (iterator.hasNext()) {
    String key2 = iterator.next();
    System.out.print(key2 + " : " + jedis.hmget("user", key2) + "\n");
  }
}

集合

@Test
public void testSet() {
  String key = "userSet";
  String key2 = "userSet2";

  jedis.sadd(key, "webb");
  jedis.sadd(key, "webb");
  jedis.sadd(key, "lebo");
  jedis.sadd(key, "lebo0425");
  jedis.sadd(key, "who");

  jedis.srem(key, "who"); // 删除

  System.out.println(jedis.smembers(key)); // 获取所有加入的value
  System.out.println(jedis.sismember(key, "who")); // 判断value是否在集合中
  System.out.println(jedis.srandmember(key)); // 随机返回一个value
  System.out.println(jedis.scard(key)); // 返回集合的元素个数

  jedis.sadd(key2, "webb");
  jedis.sadd(key2, "ssq");

  System.out.println(jedis.sinter(key, key2)); // 交集
  System.out.println(jedis.sunion(key, key2)); // 并集
  System.out.println(jedis.sdiff(key, key2)); // 差集
}

有序集合

@Test
public void testSortedSet() {
  String key = "sortedSet";

  jedis.zadd(key, 1999, "one");
  jedis.zadd(key, 1994, "two");
  jedis.zadd(key, 1998, "three");
  jedis.zadd(key, 2000, "four");
  jedis.zadd(key, 2017, "five");

  Set<String> setValues = jedis.zrange(key, 0 , -1); // score从小到大
  System.out.println(setValues);
  Set<String> setValues2 = jedis.zrevrange(key, 0, -1); // score从大到小
  System.out.println(setValues2);

  System.out.println(jedis.zcard(key)); // 元素个数
  System.out.println(jedis.zscore(key, "three")); // 元素下标
  System.out.println(jedis.zrange(key, 0, -1)); // 集合子集
  System.out.println(jedis.zrem(key, "five")); // 删除元素
  System.out.println(jedis.zcount(key, 1000, 2000)); // score在1000-2000内的元素个数
}

以上这篇详谈Jedis连接池的使用就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。

(0)

相关推荐

  • Jedis出现connection timeout问题解决方法(JedisPool连接池使用实例)

    今天发现Jedis 默认的连接方式 jedis=new Jedis("localhost",6379),老是发生connection timeout. 后来发现jedis类包还有一种可以设置最大连接时间的方法. 1->获取Jedis实例需要从JedisPool中获取:2->用完Jedis实例需要还给JedisPool:3->如果Jedis在使用过程中出错,则也需要还给JedisPool:代码如下 复制代码 代码如下: JedisPoolConfig config =

  • java客户端Jedis操作Redis Sentinel 连接池的实现方法

    pom.xml配置 <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>1.0.2.RELEASE</version> </dependency> <dependency> <groupId>redis.clients<

  • 详谈Jedis连接池的使用

    1.构建redis连接池,返还到连接池 private static JedisPool jedisPool = null; private static Jedis jedis; static { jedis = getJedisPool().getResource(); } /** * 构建redis连接池 */ public static JedisPool getJedisPool() { if (jedisPool == null) { JedisPoolConfig config =

  • 基于SpringBoot2.0默认使用Redis连接池的配置操作

    SpringBoot2.0默认采用Lettuce客户端来连接Redis服务端的 默认是不使用连接池的,只有配置 redis.lettuce.pool下的属性的时候才可以使用到redis连接池 redis: cluster: nodes: ${redis.host.cluster} password: ${redis.password} lettuce: shutdown-timeout: 100 # 关闭超时时间 pool: max-active: 8 # 连接池最大连接数(使用负值表示没有限制

  • springboot2整合redis使用lettuce连接池的方法(解决lettuce连接池无效问题)

    lettuce客户端 Lettuce 和 Jedis 的都是连接Redis Server的客户端程序.Jedis在实现上是直连redis server,多线程环境下非线程安全(即多个线程对一个连接实例操作,是线程不安全的),除非使用连接池,为每个Jedis实例增加物理连接.Lettuce基于Netty的连接实例(StatefulRedisConnection),可以在多个线程间并发访问,且线程安全,满足多线程环境下的并发访问(即多个线程公用一个连接实例,线程安全),同时它是可伸缩的设计,一个连接

  • 解决使用redisTemplate高并发下连接池满的问题

    用JMeter进行高并发测试的时候,发现报错: org.springframework.data.redis.RedisConnectionFailureException: Cannot get Jedis connection; nested exception is redis.clients.jedis.exceptions.JedisException: Could not get a resource from the pool 连不上redis,是因为连接池不够用了 我用的是red

  • Redis连接池配置及初始化实现

    加入db选择后的redis连接池配置代码 public class RedisPoolConfigure { //Redis服务器IP private String ADDR ; //Redis的端口号 private int PORT ; //可用连接实例的最大数目 private int MAX_ACTIVE ; //pool中的idle jedis实例数 private int MAX_IDLE ; //等待可用连接的最大时间,单位毫秒 private int MAX_WAIT ; //超

  • springboot 如何使用jedis连接Redis数据库

    springboot 使用jedis连接Redis数据库 1. 在 pom.xml 配置文件中添加依赖 <!-- redis 依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <!-- jedis 依赖

  • SpringBoot HikariCP连接池详解

    目录 背景 公用池化包 Commons Pool 2 案例 JMH 测试 数据库连接池 HikariCP 结果缓存池 小结 背景 在我们平常的编码中,通常会将一些对象保存起来,这主要考虑的是对象的创建成本. 比如像线程资源.数据库连接资源或者 TCP 连接等,这类对象的初始化通常要花费比较长的时间,如果频繁地申请和销毁,就会耗费大量的系统资源,造成不必要的性能损失. 并且这些对象都有一个显著的特征,就是通过轻量级的重置工作,可以循环.重复地使用. 这个时候,我们就可以使用一个虚拟的池子,将这些资

  • JSP Spring中Druid连接池配置详解

    JSP Spring中Druid连接池配置 jdbc.properties url=jdbc:postgresql://***.***.***.***:****/**** username=*** password=*** applicationContext.xml中配置bean <!-- 阿里 druid 数据库连接池 --> <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSou

  • dbcp 连接池不合理的锁导致连接耗尽解决方案

    dbcp 连接池不合理的锁导致连接耗尽解决方案 应用报错,表象来看是连接池爆满了. org.springframework.transaction.CannotCreateTransactionException: Could not open JDBC Connection for transaction; nested exception is org.apache.commons.dbcp.SQLNestedException: Cannot get a connection, pool

随机推荐