redis 基礎 一:幫助文件的檢視
部落格位址:
1、聯上 redis-cli 之後輸入 「?」 或者 「help」回車:
redis 127.0.0.1:6379> ?
redis-cli 2.6.14type: 「help @」 to get a list of commands in
「help 」 for help on
「help 」 to get a list of possible help topics
「quit」 to exit
從這裡可以得到的資訊有:
輸入 help @ 可以查到一組操作的使用,group 為操作的分組,比如 list 為一組操作,hash 為一組操作 server 為一組操作。比如輸入 help @hash 能得到處理雜湊型別的所有操作的解釋以開始支援版本:
redis 127.0.0.1:6379> help @hash
hdel key field [field ...]
summary: delete one or more hash fields
since: 2.0.0
hexists key field
summary: determine if a hash field exists
since: 2.0.0
hget key field
summary: get the value of a hash field
since: 2.0.0
hgetall key
summary: get all the fields and values in a hash
since: 2.0.0
第二行 help 可以檢視乙個命令的詳情,比如輸入 help lpop 能檢視 lpop 的操作詳情:
redis 127.0.0.1:6379> help lpop
lpop key
summary: remove and get the first element in a list
since: 1.0.0
group: list
當你不知道有哪些分組和哪些命令時,可以直接輸入 help 然後空格然後按 tab 鍵,會逐一為你列舉:
redis 127.0.0.1:6379> help @generic
redis 127.0.0.1:6379> help @string
注意:此處以@符開頭的能得到一組操作。
當你記不清楚乙個命令時,可以輸入頭乙個或幾個字元,然後按tab,會逐一為你列舉符合以你輸入為開頭的命令,比如:
redis 127.0.0.1:6379> help lpop
redis 127.0.0.1:6379> help lpush
好了,掌握了以上幾種用法,已經足以你看遍所有 redis 命令了。
Python幫助文件的檢視
python擁有兩個指令可以檢視幫助文件 分別為help 和 dir指令 對於help指令 1.help可用於檢視import的模組的資訊 import math help math 2.對於常用的一些內建物件 函式檢視 help str help str.upper 對於dir指令 1.列出模組定...
linux基礎命令及檢視命令的使用幫助
l 長格式 檔案型別 普通檔案 f d 目錄檔案 b 塊裝置檔案 block c 字元裝置檔案 character l 符號鏈結檔案 symbolic link file p 命令管道檔案 pipe s 套接字檔案 socket 檔案許可權 9位,每3位一組,每一組 rwx 讀,寫,執行 r 檔案硬...
生成像VIM幫助一樣能跳轉的文件
首先要有合適的文件。標記快捷,標記錨點 目標 兩種符號中的文件必須匹配,最好為英文,中文亦可,但是後面的顯示效果不好。然後利用 helptags 命令,快速生成tags檔案。要注意的是,helptags文件掃瞄指定目錄的txt文件,所以對於副檔名不對的文件,是不會掃瞄的。最後就是讓文件 看起來 像是...