Redis入门

Posted 流星小子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis入门相关的知识,希望对你有一定的参考价值。

package com.nanrenld.jedis;

import org.junit.Test;

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

/**
* Jedis测试
* @author Administrator
*
*/
public class JedisDemo1 {

public static void main(String[] args) throws Exception{
//1.设置IP地址和端口
Jedis jedis = new Jedis("192.168.4.7",6379);
jedis.set("name", "nanrenld");
String value = jedis.get("name");
System.out.println(value);
jedis.close();
JedisDemo1 demo = new JedisDemo1();
demo.demo2();
}
public void demo2(){
//获取链接池的配置对象
JedisPoolConfig config = new JedisPoolConfig();

//获得最大连接数
config.setMaxTotal(30); 

//获取最大空闲连接数
config.setMaxIdle(10);
//获取链接池
JedisPool jedisPool = new JedisPool(config,"192.168.4.7",6379);
//获取核心对象
Jedis jedis = null;
try{
jedis = jedisPool.getResource();
jedis.set("name","张珊");
String value = jedis.get("name");
System.out.println(value);
}catch(Exception e){
e.printStackTrace();
}finally{
if(jedis != null){
jedis.close();
}
if(jedisPool != null){
jedisPool.close();
}
}

}
}














































以上是关于Redis入门的主要内容,如果未能解决你的问题,请参考以下文章

Redis入门教程

Redis 笔记 01:入门篇

2016022601 - redis入门了解

Redis入门——Redis发布订阅

spring redis入门

Redis——Redis入门和一些笔记