Redis CLI Basics
Learn to connect to Redis, execute basic commands, and manage data via the command-line interface.
What is Redis CLI?
The redis-cli lets you talk to your Redis server directly — perfect for quick tests, debugging, and admin without writing any app code.
Connecting to Redis
Connect by running redis-cli in your terminal. It defaults to 127.0.0.1 on port 6379 and drops you at a prompt ready for commands.