MGETkey[key…]
返回所有指定的key的value。對於每個不對應string或者不存在的key,都返回特殊值nil
。正因為此,這個操作從來不會失敗。
##返回值
array-reply: 指定的key對應的values的list
##例子
redis> SET key1 "Hello"
OK
redis> SET key2 "World"
OK
redis> MGET key1 key2 nonexisting
1) "Hello"
2) "World"
3) (nil)
redis>
本文作者:陳群
本文來自雲棲社群合作伙伴rediscn,瞭解相關資訊可以關注redis.cn網站。
相關文章
- mysql中key 、primary key 、unique key 與index區別MySqlIndex
- Redis熱點key大keyRedis
- 大Key
- 熱Key
- Specified key was too long; max key length is 1000 bytes
- sessionStorage.key()Session
- python sorted keyPython
- 如何處理redis叢集中hot key和big keyRedis
- Missing key(s) in state_dict: Unexpected key(s) in state_dict
- Redis命令——鍵(key)Redis
- GitLab配置ssh keyGitlab
- Mysql Key Buffer SizeMySql
- Flutter : 關於 KeyFlutter
- Github deploy key使用Github
- COCOs2dx中KEY_KP與KEY的區別
- 偶遇ERROR 1071 (42000): Specified key was too long; max key length is 767 bytesError
- Redis刪除大KeyRedis
- Flutter | 深入淺出KeyFlutter
- 1、Flutter Tips - Widget Key;Flutter
- SSH key使用總結
- 淺析Redis大KeyRedis
- Flutter中的Key(一)Flutter
- Flutter中的Key(二)Flutter
- Vue中key的作用Vue
- 域滲透——Skeleton Key
- Reids大key優化優化
- 快速定位 Redis 熱 key?Redis
- OpenGL Shader Key Points (3)
- [Javascript] Reflect vs obj[key]JavaScriptOBJ
- openssh key格式轉換
- CentOS建立SSH_keyCentOS
- vscode ssh key登入VSCode
- Inspection Points: Key settings and Usage
- Azure Key Valut 簡介
- iOS-新手常見錯誤:this class is not key value coding-compliant for the key xxiOS
- Flutter Key的原理和使用 (一) 沒有Key會發生什麼Flutter
- vue v-for中key的作用,使用index作為key會怎麼樣?VueIndex
- on duplicate key update簡單使用
- [LeetCode] 482. License Key FormattingLeetCodeORM