Introduction
In this challenge, you'll learn how to add an item to a Redis-backed to-do list application using the LPUSH
command. The goal is to add 'Grocery Shopping' to the todo_list
list in Redis.
You'll start by connecting to the Redis server using redis-cli
. Then, you'll execute the LPUSH
command to add the task to the list. The challenge includes verification steps to confirm the task was successfully added.