l 命令格式:php
./redis-cli -h 127.0.0.1 -p 6379git |
l 修改redis配置文件(解決IP綁定問題)github
# bind 127.0.0.1 綁定的IP才能訪問redis服務器,註釋掉該配置redis
protected-mode yes 是否開啓保護模式,由yes該爲nospring
l 參數說明:數據庫
-h:redis服務器的ip地址vim
-p:redis實例的端口號spring-mvc
l 默認方式服務器
若是不指定主機和端口也能夠mvc
./redis-cli |
*默認主機地址是127.0.0.1
* 默認端口是6379
前提:須要安裝圖形界面管理器
遠程鏈接redis服務,須要關閉或者修改防火牆配置。
修改防火牆設置:
l 第一步:編輯iptables
vim /etc/sysconfig/iptables |
在命令模式下,選定要複製的那一行的末尾,而後點擊鍵盤yyp,就完成複製,而後修改。
l 第二步:重啓防火牆
service iptables restart iptables:清除防火牆規則: [肯定] iptables:將鏈設置爲政策 ACCEPT:filter [肯定] iptables:正在卸載模塊: [肯定] iptables:應用防火牆規則: [肯定] |
l 默認一共是16個數據庫,每一個數據庫之間是相互隔離(可是可使用flushall一次清空全部的庫)。數據庫的數量是在redis.conf中配置的。
l 切換數據庫使用命令:select數據庫編號(0-15)
例如:select 1
l Redis不只使用命令客戶端來操做,並且可使用程序客戶端操做。
l 如今基本上主流的語言都有客戶端支持,好比Java、C、C#、C++、php、Node.js、Go等。
l 在官方網站裏列一些Java的客戶端,有Jedis、Redisson、Jredis、JDBC-Redis、等其中官方推薦使用Jedis和Redisson。
l 在企業中用的最多的就是Jedis,下面咱們就重點學習下Jedis。
l Jedis一樣也是託管在github上,地址:https://github.com/xetorthio/jedis
<dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> |
注意事項:須要去設置redis服務器的防火牆策略(臨時關閉、永久關閉、端口暴露)
@Test publicvoid testJedis() { //建立一個Jedis的鏈接 Jedis jedis = new Jedis("127.0.0.1", 6379); //執行redis命令 jedis.set("key1", "hello world"); //從redis中取值 String result = jedis.get("key1"); //打印結果 System.out.println(result); //關閉鏈接 jedis.close();
} |
@Test publicvoid testJedisPool() { //建立一鏈接池對象 JedisPool jedisPool = new JedisPool("127.0.0.1", 6379); //從鏈接池中得到鏈接 Jedis jedis = jedisPool.getResource(); String result = jedis.get("key1") ; System.out.println(result); //關閉鏈接 jedis.close();
//關閉鏈接池 jedisPool.close(); } |
添加spring的jar包
l 配置spring配置文件applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd ">
<!-- 鏈接池配置 --> <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="false" /> <!-- 在空閒時檢查有效性, 默認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 name="poolConfig" ref="jedisPoolConfig" /> <constructor-arg name="host" value="192.168.242.130" /> <constructor-arg name="port" value="6379" /> </bean> </beans> |
l 測試代碼
@Test publicvoid testJedisPool() { JedisPool pool = (JedisPool) applicationContext.getBean("jedisPool"); 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(); } } } |
l 命令格式:
./redis-cli -h 127.0.0.1 -p 6379 |
l 修改redis配置文件(解決IP綁定問題)
# bind 127.0.0.1 綁定的IP才能訪問redis服務器,註釋掉該配置
protected-mode yes 是否開啓保護模式,由yes該爲no
l 參數說明:
-h:redis服務器的ip地址
-p:redis實例的端口號
l 默認方式
若是不指定主機和端口也能夠
./redis-cli |
*默認主機地址是127.0.0.1
* 默認端口是6379
前提:須要安裝圖形界面管理器
遠程鏈接redis服務,須要關閉或者修改防火牆配置。
修改防火牆設置:
l 第一步:編輯iptables
vim /etc/sysconfig/iptables |
在命令模式下,選定要複製的那一行的末尾,而後點擊鍵盤yyp,就完成複製,而後修改。
l 第二步:重啓防火牆
service iptables restart iptables:清除防火牆規則: [肯定] iptables:將鏈設置爲政策 ACCEPT:filter [肯定] iptables:正在卸載模塊: [肯定] iptables:應用防火牆規則: [肯定] |
l 默認一共是16個數據庫,每一個數據庫之間是相互隔離(可是可使用flushall一次清空全部的庫)。數據庫的數量是在redis.conf中配置的。
l 切換數據庫使用命令:select數據庫編號(0-15)
例如:select 1
l Redis不只使用命令客戶端來操做,並且可使用程序客戶端操做。
l 如今基本上主流的語言都有客戶端支持,好比Java、C、C#、C++、php、Node.js、Go等。
l 在官方網站裏列一些Java的客戶端,有Jedis、Redisson、Jredis、JDBC-Redis、等其中官方推薦使用Jedis和Redisson。
l 在企業中用的最多的就是Jedis,下面咱們就重點學習下Jedis。
l Jedis一樣也是託管在github上,地址:https://github.com/xetorthio/jedis
<dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> |
注意事項:須要去設置redis服務器的防火牆策略(臨時關閉、永久關閉、端口暴露)
@Test publicvoid testJedis() { //建立一個Jedis的鏈接 Jedis jedis = new Jedis("127.0.0.1", 6379); //執行redis命令 jedis.set("key1", "hello world"); //從redis中取值 String result = jedis.get("key1"); //打印結果 System.out.println(result); //關閉鏈接 jedis.close();
} |
@Test publicvoid testJedisPool() { //建立一鏈接池對象 JedisPool jedisPool = new JedisPool("127.0.0.1", 6379); //從鏈接池中得到鏈接 Jedis jedis = jedisPool.getResource(); String result = jedis.get("key1") ; System.out.println(result); //關閉鏈接 jedis.close();
//關閉鏈接池 jedisPool.close(); } |
添加spring的jar包
l 配置spring配置文件applicationContext.xml
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd ">
<!-- 鏈接池配置 --> <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="false" /> <!-- 在空閒時檢查有效性, 默認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 name="poolConfig" ref="jedisPoolConfig" /> <constructor-arg name="host" value="192.168.242.130" /> <constructor-arg name="port" value="6379" /> </bean> </beans> |
l 測試代碼
@Test publicvoid testJedisPool() { JedisPool pool = (JedisPool) applicationContext.getBean("jedisPool"); 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(); } } } |