Build Your Own Redis Server in C++ | Part 8 — List Commands Planning & Command Process Improvements

Опубликовано: 23 Март 2026
на канале: Dev w/Sel
209
6

In Part 8 of our Redis Server tutorial series, we expand our command system to support Redis List operations!

We improved the command processor structure for better scalability and started adding handler functions for List commands like:
LLEN
LPUSH
RPUSH
LPOP
RPOP
LREM
LINDEX
LSET

We also declared the list operation functions in our RedisDatabase class header — ready to implement them in the next part.

GitHub link:
https://github.com/Cukowski/Redis-Server

#redisserver #cpp #tutorial #coding #buildredisserver #socketprogramming #tcpserver #redisprotocol