Tendis
mini-redis
Our great sponsors
Tendis | mini-redis | |
---|---|---|
7 | 13 | |
2,537 | 2,471 | |
1.3% | 5.1% | |
6.9 | 5.1 | |
5 months ago | 14 days ago | |
C++ | Rust | |
GNU General Public License v3.0 or later | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Tendis
- I deleted 78% of my Redis container and it still works
- Redis Cluster Re-Implemented in Rust: Scaling Redis Easily in Kubernetes
- IceFireDB: Distributed disk storage database based on Raft and Redis protocol
-
IceFireDB:Distributed disk storage database based on Raft and Redis protocol.
There is a project called Tendis, the architecture of IceFireDB is different from it, but they are all based on disk storage and resp protocol. Thank you for your attention and contact at any time
-
KeyDB CEO Interview: Getting into YC with a Fork of Redis
Does anyone have any experience with these other Redis clones? I need to write a benchmark on these someday (the outline for the blog post is already written), but have restricted my yak shaving recently:
- https://github.com/Tencent/Tendis
- https://github.com/Netflix/dynomite
On a separate note, is FLASH supposed to be an acronym? I can't tell if they're referring to flash storage (SSD, NVMe) or they're referring to perhaps a special algorithm that uses flash storage +/- some other features, or some altogether proprietary hardware.
mini-redis
-
Beautiful rusty code
One project I found extremely easy to read and understand was mini-redis. Anything similar to that?
-
Ask HN: What are some good rust code to read to learn the language?
For learning async Rust, mini-redis repo is hard to surpass: https://github.com/tokio-rs/mini-redis
The code is simple enough for beginners to follow, but also complex enough to demonstrate Rust async in the wild. And best of all, the code is heavily commented!
You can follow the official Tokio tutorial to implement mini-redis incrementally: https://tokio.rs/tokio/tutorial/setup
-
Rust projects to learn from?
for backend async service: https://github.com/tokio-rs/mini-redis
-
Help me to start
Have a look at https://github.com/tokio-rs/mini-redis, written as an example of a modern rust application.
-
Intermediate projects to look how better Rustaceans code
I sure learned a ton from looking at the mini-redis implementation from the tokio team https://github.com/tokio-rs/mini-redis -- especially when you want to work with tokio! I think it's remarkably well structured and documented.
-
Distributed C++ builds in async Rust
If https://github.com/tokio-rs/mini-redis does not help answer your question, could you elaborate a bit more on your struggle and we can see if we can fit it into our docs.
-
KeyDB CEO Interview: Getting into YC with a Fork of Redis
Tokio async runtime for Rust has a tutorial in its user guide https://tokio.rs/tokio/tutorial on writing a mini-redis (https://github.com/tokio-rs/mini-redis).
-
Is there an asynchronous Hashmap or equivalent local DB?
You may be able to take inspiration from mini-redis, which is a learning resource created by the Tokio project. Its purpose is to show off many common patterns in async Rust, and a shared hashmap is one of them.
-
Client sending packets faster than Tokio-based TCP server can read
Serializing messages is a large part of mini-redis, and its source is pretty easy to read. You can also try to implement it using tokio_util::codec, which is a library that helps with implementing this kind of stuff. It has some decent examples on the link as well.
-
Which are the best Rust repositories to read to learn the language?
This is specifically for async Rust, but the Tokio project has written mini-redis explicitly for the purpose of being a good example of how to write idiomatic async Rust code.
What are some alternatives?
KeyDB - A Multithreaded Fork of Redis
incubator-kvrocks - Kvrocks is a distributed key value NoSQL database that uses RocksDB as storage engine and is compatible with Redis protocol.
SSDB - SSDB - A fast NoSQL database, an alternative to Redis
sled - the champagne of beta embedded databases
IceFireDB - IceFireDB is a database built for web3 and web2. It strives to fill the gap between web2 and web3 with a friendly database experience, making web3 application data storage more convenient, and making it easier for web2 applications to achieve decentralization and data immutability.
ledisdb - A high performance NoSQL Database Server powered by Go
Seastar - High performance server-side application framework
rust - Rust for the xtensa architecture. Built in targets for the ESP32 and ESP8266
xargo - The sysroot manager that lets you build and customize `std`
memKeyDB - MemKeyDB is a fork of Redis, adjusted to store objects on both Intel Optane Persistent Memory and DRAM.