Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.04 KB

README.md

File metadata and controls

18 lines (12 loc) · 1.04 KB

Building Redis

This repository contains various projects demonstrating different aspects of building a Redis-like server. Below are links to the README files for each project:

  1. Basic Server to Connect Client

    • A simple client-server application where the server listens for incoming connections and responds to client messages.
  2. Protocol Parsing and Handling Multiple Requests

    • Demonstrates protocol parsing to handle multiple requests from a client.
  3. Event Loop and Nonblocking IO

    • Explains how to handle multiple client connections using event loops and nonblocking IO.
  4. HashTable Data Serialization

    • Shows how to store key-value pairs in a hash map with data serialization.
  5. Sorted Set in Redis

    • Implements a sorted set data structure using AVL trees, useful for maintaining a sorted list of items.