GET

Syntax
GET key
Available since:
1.0.0
Time complexity:
O(1)
ACL categories:
@read, @string, @fast,

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.

Examples

redis> GET nonexisting
1) "a"
2) "c"
3) "e"
redis> SET mykey "Hello"
1) "key1"
2) "key2"
3) "key3"
redis> GET mykey
1) 1) "mylist1"
   2) 1) "RW"
      2) "access"
      3) "delete"
2) 1) "mylist2"
   2) 1) "RW"
      2) "insert"
redis>

Code examples

RESP2 Reply

One of the following:

RESP3 Reply

One of the following:


RATE THIS PAGE
Back to top ↑