溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Jedis操作Redis數(shù)據(jù)庫的方法

發(fā)布時間:2020-10-02 21:26:01 來源:腳本之家 閱讀:163 作者:一清 欄目:編程語言

本文實(shí)例為大家分享了Jedis操作Redis數(shù)據(jù)庫的具體代碼,供大家參考,具體內(nèi)容如下

關(guān)于NoSQL的介紹不寫了,直接上代碼

第一步導(dǎo)包,不多講

基本操作:

package demo;

import org.junit.Test;

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;

public class Demo {
 // 通過Java程序訪問Redis數(shù)據(jù)庫
 @Test
 public void test1() {
  // 獲得連接對象
  Jedis jedis = new Jedis("localhost", 6379);

  // 存儲、獲得數(shù)據(jù)
  jedis.set("username", "yiqing");
  String username = jedis.get("username");
  System.out.println(username);
 }

 // Jedis連接池獲得jedis連接對象
 @Test
 public void test2() {
  // 配置并創(chuàng)建redis連接池
  JedisPoolConfig poolconfig = new JedisPoolConfig();
  // 最大(小)閑置個數(shù)
  poolconfig.setMaxIdle(30);
  poolconfig.setMinIdle(10);
  // 最大連接數(shù)
  poolconfig.setMaxTotal(50);

  JedisPool pool = new JedisPool(poolconfig, "localhost", 6379);

  // 獲取資源
  Jedis jedis = pool.getResource();
  jedis.set("username", "yiqing");
  String username = jedis.get("username");
  System.out.println(username);

  // 關(guān)閉資源
  jedis.close();
  // 開發(fā)中不會關(guān)閉連接池
  // pool.close();
 }
}

注意:如果運(yùn)行失敗,那么原因只有一條:沒有打開Redis:

Jedis操作Redis數(shù)據(jù)庫的方法

好的,我們可以用可視化工具觀察下:

Jedis操作Redis數(shù)據(jù)庫的方法

保存成功??!

接下來:

我們需要抽取一個工具類,方便操作: 

package demo;

import java.io.IOException;
import java.io.InputStream;
import java.util.Properties;

import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;

public class JedisPoolUtils {

 private static JedisPool pool = null;

 static {

 // 加載配置文件
 InputStream in = JedisPoolUtils.class.getClassLoader().getResourceAsStream("redis.properties");
 Properties pro = new Properties();
 try {
  pro.load(in);
 } catch (IOException e) {
  e.printStackTrace();
 }

 // 獲得池子對象
 JedisPoolConfig poolConfig = new JedisPoolConfig();
 poolConfig.setMaxIdle(Integer.parseInt(pro.get("redis.maxIdle").toString()));// 最大閑置個數(shù)
 poolConfig.setMinIdle(Integer.parseInt(pro.get("redis.minIdle").toString()));// 最小閑置個數(shù)
 poolConfig.setMaxTotal(Integer.parseInt(pro.get("redis.maxTotal").toString()));// 最大連接數(shù)
 pool = new JedisPool(poolConfig, pro.getProperty("redis.url"),
  Integer.parseInt(pro.get("redis.port").toString()));
 }

 // 獲得Jedis資源
 public static Jedis getJedis() {
 return pool.getResource();
 }
}

在src下新建一個文件:redis.properties:

redis.maxIdle=30
redis.minIdle=10
redis.maxTotal=100
redis.url=localhost
redis.port=6379

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI