https://github.com/willothy/minikv
Toy distributed key-value store in <300LOC
https://github.com/willothy/minikv
Last synced: 3 months ago
JSON representation
Toy distributed key-value store in <300LOC
- Host: GitHub
- URL: https://github.com/willothy/minikv
- Owner: willothy
- Created: 2025-01-22T05:34:30.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-17T23:17:05.000Z (over 1 year ago)
- Last Synced: 2025-12-09T02:40:59.970Z (7 months ago)
- Language: Rust
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# MiniKV
A distributed-ish in-memory key-value store in <300LOC.
## What is is, and what it is not
- It IS:
- fast (in theory, no benchmarks yet)
- very easy to use
- entirely based on HTTP
- It is NOT:
- fault tolerant
- partition tolerant
- It COULD be (but is not right now):
- persistent
- secure
- no auth is implemented at the moment