Redis學習筆記(二)

來源:互聯網
上載者:User
通過Jedis用戶端串連Redis緩衝步驟: 1、添加jar包:

pom座標:

<dependency>

     <groupId>redis.clients</groupId>

     <artifactId>jedis</artifactId>

     <version>2.7.0</version>

</dependency>

jar包如下: commons-pool2-2.3.jar jedis-2.7.0.jar
2、單一實例串連

通過建立單一實例jedis對象串連redis服務,如下代碼:

// 單一實例串連redis@Testpublic void testJedisSingle() {Jedis jedis = new Jedis("192.168.101.3", 6379);jedis.set("name", "bar");String name = jedis.get("name");System.out.println(name);jedis.close();}

3、使用串連池串連

通過單一實例串連redis不能對redis串連進行共用,可以使用串連池對redis串連進行共用,提高資源使用率,使用jedisPool串連redis服務,如下代碼:

@Testpublic void pool() {JedisPoolConfig config = new JedisPoolConfig();//最大串連數config.setMaxTotal(30);//最大串連空閑數config.setMaxIdle(2);JedisPool pool = new JedisPool(config, "192.168.101.3", 6379);Jedis jedis = null;try  {jedis = pool.getResource();jedis.set("name", "lisi");String name = jedis.get("name");System.out.println(name);}catch(Exception ex){ex.printStackTrace();}finally{if(jedis != null){//關閉串連jedis.close();}}}

4、jedis和Spring整合

配置spring設定檔applicationContext.xml

<!-- 串連池配置 --><bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig"><!-- 最大串連數 --><property name="maxTotal" value="30" /><!-- 最大空閑串連數 --><property name="maxIdle" value="10" /><!-- 每次釋放串連的最大數目 --><property name="numTestsPerEvictionRun" value="1024" /><!-- 釋放串連的掃描間隔(毫秒) --><property name="timeBetweenEvictionRunsMillis" value="30000" /><!-- 串連最小空閑時間 --><property name="minEvictableIdleTimeMillis" value="1800000" /><!-- 串連空閑多久後釋放, 當空閑時間>該值 且 空閑串連>最大空閑串連數 時直接釋放 --><property name="softMinEvictableIdleTimeMillis" value="10000" /><!-- 擷取串連時的最大等待毫秒數,小於零:阻塞不確定的時間,預設-1 --><property name="maxWaitMillis" value="1500" /><!-- 在擷取串連的時候檢查有效性, 預設false --><property name="testOnBorrow" value="true" /><!-- 在空閑時檢查有效性, 預設false --><property name="testWhileIdle" value="true" /><!-- 串連耗盡時是否阻塞, false報異常,ture阻塞直到逾時, 預設true --><property name="blockWhenExhausted" value="false" /></bean><!-- redis單機 通過串連池 --><bean id="jedisPool" class="redis.clients.jedis.JedisPool" destroy-method="close"><constructor-arg index="0" ref="jedisPoolConfig"></constructor-arg><constructor-arg index="1" value="192.168.101.3"></constructor-arg><constructor-arg index="2" value="7001"></constructor-arg></bean>

測試代碼:

private ApplicationContext applicationContext;@Beforepublic void init() {applicationContext = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");}@Testpublic void testJedisPool() {JedisPool pool = (JedisPool) applicationContext.getBean("jedisPool");try  {jedis = pool.getResource();jedis.set("name", "lisi");String name = jedis.get("name");System.out.println(name);}catch(Exception ex){ex.printStackTrace();}finally{if(jedis != null){//關閉串連jedis.close();}}}




聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.