| Crates.io | redicks |
| lib.rs | redicks |
| version | 0.2.1 |
| created_at | 2025-12-28 23:00:37.90614+00 |
| updated_at | 2026-01-05 02:22:48.524065+00 |
| description | Bare bones Redis clone built for learning |
| homepage | |
| repository | |
| max_upload_size | |
| id | 2009536 |
| size | 33,699 |
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 functions with the cli and RClient type include: GET, SET, LAPPEND, SUBSCRIBE, UNSUBSCRIBE, and PUBLISH.