Complete the code to create a memory-efficient Redis string key with a small value.
SET mykey [1]Using a small string value helps Redis store it efficiently in memory.
Complete the code to add multiple small elements efficiently to a Redis list.
LPUSH mylist [1]Adding small elements keeps the list memory-efficient.
Fix the error in the command to create a memory-efficient Redis hash with small fields.
HSET myhash field1 [1]Using small field values helps Redis store hashes efficiently using ziplists.
Fill both blanks to create a memory-efficient Redis sorted set with small scores and members.
ZADD myzset [1] [2]
Using small numeric scores and short member names keeps sorted sets memory-efficient.
Fill all three blanks to create a memory-efficient Redis set with small members and add a new member.
SADD myset [1] [2] [3]
Using short member names keeps Redis sets memory-efficient.