本文實(shí)例為大家分享了Jedis操作redis數(shù)據(jù)庫的具體代碼,供大家參考,具體內(nèi)容如下
創(chuàng)新互聯(lián)公司成立于2013年,先為阜平等服務(wù)建站,阜平等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為阜平企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
關(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(); // 最大(?。╅e置個數(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:
好的,我們可以用可視化工具觀察下:
保存成功!!
接下來:
我們需要抽取一個工具類,方便操作:
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í)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。