标签:nts body cli res table containe cells cep use
package com.java1234.redis; import redis.clients.jedis.Jedis; import redis.clients.jedis.JedisPool; import redis.clients.jedis.JedisPoolConfig; /** * 测试类 * @author user * */ public class JedisTest { public static void main(String[] args) { JedisPoolConfig config= new JedisPoolConfig(); // 连接池的配置对象 config.setMaxTotal( 100 ); // 设置最大连接数 config.setMaxIdle( 10 ); // 设置最大空闲连接数 JedisPool jedisPool= new JedisPool(config, "192.168.1.107" , 6379 ); Jedis jedis= null ; try { jedis=jedisPool.getResource(); // 获取连接 jedis.auth( "123456" ); // 设置密码 jedis.set( "name" , "java知识分享网" ); // 设置值 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(); } } } } |
运行:
标签:nts body cli res table containe cells cep use
原文地址:http://www.cnblogs.com/zhaojiatao/p/7685831.html