GET
Syntax
Section titled “Syntax”GET key
GET returns the value as a string for the key in args.
The command returns an empty string if the key does not exist.
Examples
Section titled “Examples”localhost:7379> SET k1 v1OKlocalhost:7379> GET k1OK "v1"localhost:7379> GET k2OK ""