亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

redis如何循環讀出數據庫

小新
302
2021-01-21 13:39:37
欄目: 云計算

redis如何循環讀出數據庫

redis循環讀出數據庫的示例:

RedisDO rd = new RedisDO();

rd.open();

Set s = rd.jedis.keys("*");

Iterator it = s.iterator();

while (it.hasNext()) {

String key = (String) it.next();

String value = rd.jedis.get(key);

System.out.println(key + value);

}

rd.close();

rd的算法為集成redis 運算,代碼:

package com.javaer.click.way;

import redis.clients.jedis.Jedis;

import redis.clients.jedis.JedisPool;

import redis.clients.jedis.JedisPoolConfig;

import redis.clients.jedis.exceptions.JedisConnectionException;

public class RedisDO {

public Jedis jedis;

public void close(){

jedis.disconnect();

jedis = null;

}

public Jedis open(){

JedisPoolConfig config = new JedisPoolConfig();

config.setMaxActive(100);

config.setMaxIdle(20);

config.setMaxWait(1000l);

JedisPool pool;

pool = new JedisPool(config, "xxxxxxxx.xx.xx.xx", 6379);

boolean borrowOrOprSuccess = true;

try {

jedis = pool.getResource();

// do redis opt by instance

} catch (JedisConnectionException e) {

borrowOrOprSuccess = false;

if (jedis != null)

pool.returnBrokenResource(jedis);

} finally {

if (borrowOrOprSuccess)

pool.returnResource(jedis);

}

jedis = pool.getResource();

return jedis;

}

/**

* @param args

*/

public static void main(String[] args) {

// TODO Auto-generated method stub

}

}

0
广安市| 凌云县| 揭东县| 会泽县| 宜良县| 胶南市| 东宁县| 汉源县| 铜陵市| 垫江县| 竹北市| 菏泽市| 勐海县| 英吉沙县| 庆元县| 金川县| 连云港市| 沭阳县| 盐池县| 香河县| 南溪县| 漾濞| 都兰县| 波密县| 东台市| 建平县| 唐海县| 五指山市| 平谷区| 得荣县| 石狮市| 永年县| 浦县| 巴林右旗| 石阡县| 嘉荫县| 太白县| 丰台区| 玉环县| 县级市| 高雄市|