參考:http://www.runoob.com/redis/redis-connection.htmlhtml
Redis 鏈接命令主要是用於鏈接 redis 服務。redis
如下實例演示了客戶端如何經過密碼驗證鏈接到 redis 服務,並檢測服務是否在運行:數據庫
redis 127.0.0.1:6379> AUTH "password" OK redis 127.0.0.1:6379> PING PONG
下表列出了 redis 鏈接的基本命令:ui
序號 | 命令及描述 |
---|---|
1 | AUTH password 驗證密碼是否正確 |
2 | ECHO message 打印字符串 |
3 | PING 查看服務是否運行 |
4 | QUIT 關閉當前鏈接 |
5 | SELECT index 切換到指定的數據庫 |