Complete the code to unsubscribe from a single channel in Redis.
UNSUBSCRIBE [1]The UNSUBSCRIBE command followed by a channel name unsubscribes the client from that channel.
Complete the code to unsubscribe from multiple channels at once.
UNSUBSCRIBE [1] [2]
You can unsubscribe from multiple channels by listing their names separated by spaces after the UNSUBSCRIBE command.
Fix the error in the UNSUBSCRIBE command to correctly unsubscribe from 'news'.
UNSUBSCRIBE [1]The channel name is case-sensitive. Use the exact channel name 'news' to unsubscribe correctly.
Fill both blanks to unsubscribe from 'sports' and 'weather' channels.
UNSUBSCRIBE [1] [2]
List the channel names separated by spaces after the UNSUBSCRIBE command to unsubscribe from multiple channels.
Fill all three blanks to unsubscribe from 'news', 'sports', and 'weather' channels.
UNSUBSCRIBE [1] [2] [3]
To unsubscribe from multiple channels, list all channel names separated by spaces after the UNSUBSCRIBE command.