Complete the code to set the key "name" with the value "Alice" in Redis.
SET name [1]The SET command stores the value as a string, but you do not need to quote the value in the Redis CLI; quotes are used in some programming languages but not in Redis commands.
Complete the code to get the value of the key "name" from Redis.
[1] nameThe GET command retrieves the value stored at the given key.
Fix the error in the command to set the key "age" to 30 in Redis.
SET age [1]Redis stores values as strings, but numeric values can be set without quotes in Redis CLI.
Fill both blanks to set the key "city" to "Paris" and then get its value.
SET city [1] [2] city
First, set the key with the value. Then use GET to retrieve it.
Fill all three blanks to set the key "language" to "Redis", get it, and then delete it.
SET language [1] [2] language [3] language
Set the key with the value, get it with GET, then delete it with DEL.