자바 조작 redis 삭제 및 수정 기능 을 실현 하 는 방법 예제
우선, 우 리 는 윈도 우즈 아래 에 redis 환경 을 설정 해 야 합 니 다. 구체 적 인 설정 강 좌 는 다음 과 같 습 니 다. / / www. jb51. net / article / 96230. htm
그리고 가 져 와 야 합 니 다: jedis - 2.7.3. jar 이 가방 은 다음 코드 를 보십시오.
package redis.main;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
public final class RedisPool {
//Redis IP
private static String ADDR = "127.0.0.1";
//Redis
private static int PORT = 6379;
//
private static String AUTH = "123456";
// , 8;
// -1, ; pool maxActive jedis , pool exhausted( )。
private static int MAX_ACTIVE = 1024;
// pool idle( ) jedis , 8。
private static int MAX_IDLE = 200;
// , , -1, 。 , JedisConnectionException;
private static int MAX_WAIT = 10000;
private static int TIMEOUT = 10000;
// borrow jedis , validate ; true, jedis ;
private static boolean TEST_ON_BORROW = true;
private static JedisPool jedisPool = null;
/**
* Redis
*/
static {
try {
JedisPoolConfig config = new JedisPoolConfig();
//config.setMaxActive(MAX_ACTIVE);
config.setMaxTotal(MAX_ACTIVE);
config.setMaxIdle(MAX_IDLE);
config.setMaxWaitMillis(MAX_WAIT);
config.setTestOnBorrow(TEST_ON_BORROW);
jedisPool = new JedisPool(config, ADDR, PORT, TIMEOUT, AUTH);
} catch (Exception e) {
e.printStackTrace();
}
}
/**
* Jedis
* @return
*/
public synchronized static Jedis getJedis() {
try {
if (jedisPool != null) {
Jedis resource = jedisPool.getResource();
return resource;
} else {
return null;
}
} catch (Exception e) {
e.printStackTrace();
return null;
}
}
/**
* jedis
* @param jedis
*/
public static void returnResource(final Jedis jedis) {
if (jedis != null) {
jedisPool.close();
}
}
}
다음은 main 함수:
package redis.main;
import java.util.Set;
import redis.clients.jedis.Jedis;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
insert("username", "xiaoming1");
System.out.println(get("username"));
delete("username");
System.out.println(get("username"));
}
static void insert(String key, String value){
Jedis jedis = RedisPool.getJedis();
jedis.set(key, value);
}
static void delete(String key){
Jedis jedis = RedisPool.getJedis();
jedis.del(key);
}
static String get(String key){
Jedis jedis = RedisPool.getJedis();
return jedis.get(key);
}
}
첨부: 전체 인 스 턴 스 코드 를 클릭 하여 이 사이트 에서 다운로드 합 니 다.
자바 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.,,,,,,,,,,,,,
본 고 에서 말 한 것 이 여러분 의 자바 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.