Complete the code to set a string value in Redis.
SET mykey [1]In Redis, string values do not need to be enclosed in quotes when setting them as literals in commands.
Complete the code to add a member to a Redis set.
SADD myset [1]Redis commands accept string arguments without quotes unless they contain spaces or special characters.
Fix the error in the command to get a hash field value.
HGET myhash [1]Hash field names in Redis commands do not need to be quoted strings unless they contain spaces or special characters.
Fill both blanks to create a sorted set with a member and score.
ZADD myzset [1] [2]
ZADD requires the score first (a number), then the member (a string without quotes unless it contains spaces).
Fill all three blanks to create a Redis hash with a field and value.
HSET [1] [2] [3]
HSET command syntax: key, field (string), and value (string). Field and value do not need quotes unless they contain spaces or special characters.