Complete the code to check the type of the key 'user:1'.
TYPE [1]The TYPE command requires the exact key name to check its type. Here, the key is 'user:1'.
Complete the command to check the type of the key stored in variable 'keyName'.
TYPE [1]In Redis CLI, you pass the key name directly without quotes or variable symbols.
Fix the error in the command to check the type of key 'session123'.
TYPE [1]Redis TYPE command expects the key name without quotes or variable symbols.
Fill both blanks to check the type of key 'cache:data'.
TYPE [1][2]
The key name 'cache:data' must be provided as a single argument without splitting it into parts.
Fill all three blanks to check the type of key 'user:profile:100'.
TYPE [1][2][3]
The key 'user:profile:100' includes two colons ':' separating parts. You must provide the full key name exactly as it is.