Complete the code to delete a key named 'user:1' using the DEL command.
DEL [1]The DEL command requires the key name without quotes in Redis CLI, so use user:1 directly.
Complete the code to delete multiple keys 'temp1' and 'temp2' using DEL.
DEL [1]DEL accepts multiple keys as separate arguments without quotes, like temp1 temp2.
Fix the error in the code to asynchronously delete the key 'cache:data' using UNLINK.
UNLINK [1]UNLINK requires the key name without quotes in Redis CLI, so use cache:data directly.
Fill both blanks to delete keys 'session1' and 'session2' asynchronously using UNLINK.
UNLINK [1] [2]
UNLINK accepts multiple keys as separate arguments without quotes. Use session1 and session2.
Fill all three blanks to delete keys 'tempA', 'tempB', and 'tempC' synchronously using DEL.
DEL [1] [2] [3]
DEL deletes multiple keys given as separate arguments without quotes. Use tempA, tempB, and tempC.