Redis一攬子命令 未完待續

2022-03-27 15:17:33 字數 511 閱讀 7758

1.del,刪除乙個或多個key,返回數量

set name "hs"

del name

set name "k"

set color "y"

del name color (刪除多個)

2.exists,檢查乙個key是否存在

set db "redis"

exists db

3.expire,為key設定生存時間

set cache_page "www.google.com"

expire cache_page 30 設定生存時間

ttl cache_page 檢視剩餘時間

4.expireat,同上,接受引數為時間戳

expireat cache_page 1355292000 到某個時間過期

4.keys,查詢符合給定模式的key

keys *o*

1) "four"

2) "two"

3) "one"

git命令整理(未完待續)

git命令,斷斷續續地在接觸,這裡稍稍整理下。1.git status 檢視本地文件跟本地git branch裡面的區別 2.git add x yyyy zzzzz 把本地改動新增到本地git branch裡面 3.git commit m 提交內容到版本庫 4.git push origin x...

Git 命令Notes(未完待續)

配置 所有的配置檔案,其實都儲存在本地!路徑 git etc gitconfig 序號說明指令1 所有的配置 git config l 2系統的配置 git config system list 3本地的配置 git config global list 4顯示當前路徑 pwd 5顯示目錄中所有檔案...

演算法 一攬子排序演算法(1)

def bubblesort lis for i in range len lis print lis for j in range 1,len lis i if lis j 1 lis j lis j 1 lis j lis j lis j 1 5,4,2,1,6,3 4,2,1,5,3,6 2,...