get

GET

GET key

Get the value of key. If the key does not exist the special value nil is returned. An error is returned if the value stored at key is not a string, because GET only handles string values.

Return value

Bulk string reply: the value of key, or nil when key does not exist.

Examples

redis> GET nonexisting (nil) redis> SET mykey "Hello" "OK" redis> GET mykey "Hello"

© 2009–2017 Salvatore Sanfilippo
Licensed under the Creative Commons Attribution-ShareAlike License 4.0.
https://redis.io/commands/get

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部