redis transaction和connection命令操作
生活随笔
收集整理的這篇文章主要介紹了
redis transaction和connection命令操作
小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
/*********** redis transaction命令操作 **********/
1.
DISCARD -
summary: Discard all commands issued after MULTI
since: 2.0.0
EXEC -
summary: Execute all commands issued after MULTI
since: 1.2.0
MULTI -
summary: Mark the start of a transaction block
since: 1.2.0
UNWATCH -
summary: Forget about all watched keys
since: 2.2.0
WATCH key [key ...]
summary: Watch the given keys to determine execution of the MULTI/EXEC block
since: 2.2.0
/************** redis connection命令操作 ***********/
1.驗(yàn)證服務(wù)器密碼
AUTH password
summary: Authenticate to the server
since: 1.0.0
2.顯示指定的message信息
ECHO message
summary: Echo the given string
since: 1.0.0
3.判斷服務(wù)是否ping通
PING -
summary: Ping the server
since: 1.0.0
4.關(guān)閉連接并退出
QUIT -
summary: Close the connection
since: 1.0.0
5.選擇redis下的數(shù)據(jù)庫(kù)
SELECT index
summary: Change the selected database for the current connection
since: 1.0.0
1.
DISCARD -
summary: Discard all commands issued after MULTI
since: 2.0.0
EXEC -
summary: Execute all commands issued after MULTI
since: 1.2.0
MULTI -
summary: Mark the start of a transaction block
since: 1.2.0
UNWATCH -
summary: Forget about all watched keys
since: 2.2.0
WATCH key [key ...]
summary: Watch the given keys to determine execution of the MULTI/EXEC block
since: 2.2.0
/************** redis connection命令操作 ***********/
1.驗(yàn)證服務(wù)器密碼
AUTH password
summary: Authenticate to the server
since: 1.0.0
2.顯示指定的message信息
ECHO message
summary: Echo the given string
since: 1.0.0
3.判斷服務(wù)是否ping通
PING -
summary: Ping the server
since: 1.0.0
4.關(guān)閉連接并退出
QUIT -
summary: Close the connection
since: 1.0.0
5.選擇redis下的數(shù)據(jù)庫(kù)
SELECT index
summary: Change the selected database for the current connection
since: 1.0.0
總結(jié)
以上是生活随笔為你收集整理的redis transaction和connection命令操作的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。
- 上一篇: hdu 1757 A Simple Ma
- 下一篇: javascript之基本概念