20 releases
new 0.1.20 | May 1, 2025 |
---|---|
0.1.19 | May 1, 2025 |
0.1.16 | Apr 30, 2025 |
0.1.13 | Sep 10, 2024 |
0.1.6 | Mar 31, 2024 |
#437 in Database interfaces
196 downloads per month
85KB
2.5K
SLoC
crabdis
It's like Redis but a bit rusty...
What?
This is a simple in-memory key-value store written in Rust. It's somewhat compatible with Redis via the RESP protocol, but it's not a drop-in replacement. A lot of commands are missing and stuff might not work as expected.
Please don't use this in production. Or do, I'm not your mom. But don't blame me if it eats your data.
Why?
I wanted to write Redis but multi-threaded and in Rust. This is the result. Works? Kinda. Is it good? Maybe. Is it fast? Yes.
Installation
You can find binaries on the releases page. Or you can build it yourself with cargo build --release
.
If you want to install it with cargo, you can do so with cargo install crabdis
.
There is also a Docker image available on Docker Hub.
Usage
crabdis
TODO / Missing Features
- Basic RESP protocol implementation
- GET, SET, DEL, EXISTS, KEYS, FLUSHDB
- COMMAND / COMMAND DOCS (so ioredis works)
- SET arguments (EX, PX, NX, XX) + SETEX, PSETEX
- Hash Command family (HGETALL, HSET)
- Pub/Sub support (PUBLISH, SUBSCRIBE, UNSUBSCRIBE)
- Additional commands (INCR, MGET, MSET, TYPE, SCAN, SELECT, RENAMENX, INFO, HELLO)
- Persistence
- More Hash commands (HGET, HDEL, etc.)
- List commands
- Set commands
- Sorted Set commands
This will start the server on 127.0.0.1:6379
. You can change the address and port with the --address
and --port
flags.
License
This project is licensed under the MIT License.
Dependencies
~4–10MB
~94K SLoC