aboutsummaryrefslogtreecommitdiff
path: root/src/resp_parser.rs
AgeCommit message (Collapse)AuthorFilesLines
2025-07-23feat: Added simple response to INFO replication commandomagdy1-0/+4
2025-07-20feat: Added parsing of simple command line arguments and CONFIG GET command ↵omagdy1-3/+3
implementation
2025-07-17test: Moved tests to seprate files under tests folder for more structureomagdy1-985/+138
2025-07-17feat: Added expiry options to SET commandomagdy1-1/+2
2025-07-16feat: Added support for simple commands like PING, ECHO, GET and SETomagdy1-1/+48
- Implemented a simple parsing logic for parsing commmands now - Created a HashMap that will act as our storage and shared it across threads using `Arc<Mutex<()>>` magic - Wrote some macros to make instantiating RESP types eaiser for myself
2025-07-16feat: Implemented a little top down parser for RESPomagdy1-0/+1574