美文网首页
java 使用reids做缓存出现redis.clients.j

java 使用reids做缓存出现redis.clients.j

作者: 南京杨小兵 | 来源:发表于2018-03-01 14:26 被阅读65次

    1、首先链接服务器 使用redis-cli

    2、info

    3、查看# Clients

    connected_clients:23

    client_longest_output_list:0

    client_biggest_input_buf:0

    blocked_clients:0

    总结:创建连接池,一定要释放连接池。

    /**

    * 获取Jedis实例

        * @return

        */

      public synchronized static JedisgetJedis() {

    try {

    if (jedisPool !=null) {

    Jedis resource =null;

                  try {

    resource =jedisPool.getResource();

                      return resource;

                  }finally {

    jedisPool.returnResource(resource);

                  }

    }else {

    return null;

              }

    }catch (Exception e) {

    e.printStackTrace();

    return null;

          }

    }

    相关文章

      网友评论

          本文标题:java 使用reids做缓存出现redis.clients.j

          本文链接:https://www.haomeiwen.com/subject/kvvgxftx.html