- Python 3.x
- Modules:
socket
andjson
(both are part of Python’s standard library)
-
Start the Server:
-
Open a terminal and run the server:
python server3.py
-
-
Run the Client:
-
Open another terminal and run the client to send commands to the server:
python client3.py
-
The server stores key-value pairs in memory using a Python dictionary. Commands like SET
, GET
, DELETE
, and MSET
allow you to manipulate and retrieve stored data. All stored data is volatile and will be lost when the server is restarted.
The client and server communicate via a TCP connection using JSON-formatted strings. The client sends commands to the server in JSON format, and the server responds in JSON as well. This makes the protocol easy to understand and extend for various actions like SET
, GET
, DELETE
, FLUSH
, MSET
, and MGET
.