Redis Client Setname 命令

Redis 服務(wù)器

Redis Client Setname 命令用于指定當(dāng)前連接的名稱。

這個(gè)名字會(huì)顯示在 CLIENT LIST 命令的結(jié)果中, 用于識(shí)別當(dāng)前正在與服務(wù)器進(jìn)行連接的客戶端。

語(yǔ)法

redis Client Setname 命令基本語(yǔ)法如下:

redis 127.0.0.1:6379> CLIENT SETNAME connection-name

可用版本

>= 2.6.9

返回值

設(shè)置成功時(shí)返回 OK 。

實(shí)例

# 新連接默認(rèn)沒(méi)有名字

redis 127.0.0.1:6379> CLIENT GETNAME
(nil)

# 設(shè)置名字

redis 127.0.0.1:6379> CLIENT SETNAME hello-world-connection
OK

# 返回名字

redis 127.0.0.1:6379> CLIENT GETNAME
"hello-world-connection"

# 在客戶端列表中查看

redis 127.0.0.1:6379> CLIENT LIST
addr=127.0.0.1:36851
fd=5
name=hello-world-connection     # <- 名字
age=51
...

# 清除名字

redis 127.0.0.1:6379> CLIENT SETNAME        # 只用空格是不行的!
(error) ERR Syntax error, try CLIENT (LIST | KILL ip:port)

redis 127.0.0.1:6379> CLIENT SETNAME ""     # 必須雙引號(hào)顯示包圍
OK

redis 127.0.0.1:6379> CLIENT GETNAME        # 清除完畢
(nil)

Redis 服務(wù)器