# Stored - store daemon Stored is a simple KV server. ## Features - Multiple connection protocolls supported [TCP|Unix Domain Socket|Message Queue|Shared Memory (single client)] - Basic, non-persistent KV operations supported - Dynamic design for easy extensibility - Proper error handling - Full interactive client repl cli ## Usage 1. Spin up the server ```bash $ cd server && make run ``` 2. Spin up a client ```bash $ cd client && make run ``` type `.help` for an overview of commands. That's it!