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