Introduction
In this challenge, you'll simulate a social media app using Redis to cache trending topics. The goal is to set a key representing a trending topic and configure it to expire after a specific duration.
Specifically, you'll connect to the Redis server using redis-cli, set the value of the key trending:topic1 to Redis Basics, and then set its expiration time to 3600 seconds using the EXPIRE command. Finally, you'll exit the redis-cli interface. The challenge will verify that you correctly set the key and its expiration time by checking the Redis command history.


