Skip to content

Latest commit

 

History

History
48 lines (35 loc) · 1.1 KB

README.md

File metadata and controls

48 lines (35 loc) · 1.1 KB

redis-playground

📚 Learning and exploring Redis.

The open source, in-memory data store used by millions of developers as a database, cache, streaming engine, and message broker.

--https://redis.io/

Description

NOTE: This project was developed on macOS. It is for my own personal use.

Redis is awesome. I need to learn it.

Instructions

Follow these instructions to build and run the demo:

  1. Install Redis:
    • brew install redis
  2. Start the Redis server:
    • redis-server --loglevel warning
  3. Connect to it from the Redis REPL (Read Eval Print Loop):
    • redis-cli
  4. Write some data using the REPL
    • LPUSH redis-playground "Hello from the redis-playground!"
      
    • Instead of copy/pasting the command. Try writing it by hand. Notice how the REPL has a nice auto-suggestion and auto-completion user experience.
  5. Read the data:
    • RPOP redis-playground
      

Reference

Redis: "Getting Started"