Complete the code to set a key named 'user:1' with the value 'Alice'.
SET user:1 [1]
The SET command stores the value 'Alice' under the key 'user:1'.
Complete the code to get the value stored at key 'session:123'.
GET [1]The GET command retrieves the value stored at the key 'session:123'.
Fix the error in the command to delete the key 'cache:item'.
DEL [1]The key name must match exactly. The key is 'cache:item' with a colon, not a dash or underscore.
Fill both blanks to set a key 'product:45' with value 'Book' and then retrieve it.
[1] product:45 Book [2] product:45
First, use SET to store the value 'Book' at 'product:45'. Then use GET to retrieve it.
Fill all three blanks to set a key 'order:100' with value 'Pending', update it to 'Shipped', and then get the updated value.
[1] order:100 Pending [2] order:100 Shipped [3] order:100
Use SET to create and update the key's value, then GET to retrieve the latest value.