Auriga is a simple project that simulates a basic Redis server in Rust. It's a key-value store that supports GET
and SET
commands.
- Rust: You need to have Rust installed on your machine. You can download it from the official website.
- Clone the repository:
git clone https://github.com/yourusername/auriga.git
- Navigate into the project directory:
cd auriga
- Run the server:
cargo run
The server will start on localhost
at port 6390
.
You can interact with the server using any TCP client. Here's an example using telnet
:
$ telnet localhost 6390
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
SET mykey myvalue
OK
GET mykey
myvalue