redicks 0.2.1

Bare bones Redis clone built for learning
Documentation
1
2
3
4
5
6
7
8
9
### REDICKS


Redicks is a clone of Redis built for learning. The main binary is the server that listens to connections from clients.
The cli binary is a command line interface for interacting with the server through the command line.

To interface with the server in code, create an RClient type using RClient::connect(port), where port is a string representing where the client should connect to (127.0.0.1:6379).

### Supported Comands

Supported functions with the cli and RClient type include: GET, SET, LAPPEND, SUBSCRIBE, UNSUBSCRIBE, and PUBLISH.