Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 813 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 813 Bytes

Redis

Redis is an open source (BSD licensed), in-memory data structure store used as a database, cache, message broker, and streaming engine.

Features

  • Supports PING command
    Returns PONG if no argument is provided

  • Supports ECHO command
    Returns message

  • Supports SET command
    Sets a key with a corresponding value

    • Supports PX arguement
  • Supports GET command
    Gets the value associated with the corresponding key

How to run

Run the python -m app.main or ./your_server.sh command to start the database

Note

Install the REDIS CLI and use it to interact with the redis implementation