字串操作
列表操作 (有序,重複)
左新增: lpush websites baidu.com
右新增: rpush websites google.com
左移除: lpop websites
右移除: rpop websites
指定元素移除: lrem websites count google.com count>0從頭開始搜尋,刪除count個元素,count <0 從尾部開始搜 索,刪除count絕對值個元素,count =0刪除所有與value 值相等的元素。
集合操作(無序,不重複)
字典操作
Redis相關操作
set key value ex seconds px milliseconds nx xx ex seconds 為鍵設定秒級過期時間 px milliseconds 為鍵設定毫秒級過期時間 nx 鍵必須不存在,才可以設定成功,用於新增 xx 鍵必須存在,才可以設定成功,用於更新 public c...
Redis 相關操作命令
本來想搞個桌布的,不但放不下還非常醜 命令說明 select 下標 選擇下標所處的資料庫 dbsize 檢視當前資料庫的鍵數量 flushdb 清空當前db flushall 清空所有的db 命令說明 keys 匹配符 匹配符有 和 代表了乙個字元,號代表了n個字元!exists 鍵名 是否存在這個...
Redis相關操作命令
解壓安裝後編譯 localhost redis 3.0.0 make 編譯後 localhost redis 3.0.0 make install prefix usr local redis 啟動 localhost redis 3.0.0 cd bin localhost bin redis s...