https://github.com/juliencrn/mini-redis
Little project to learn how to build apps on top on Tokio, a Rust runtime.
https://github.com/juliencrn/mini-redis
runtime rust tokio
Last synced: 6 months ago
JSON representation
Little project to learn how to build apps on top on Tokio, a Rust runtime.
- Host: GitHub
- URL: https://github.com/juliencrn/mini-redis
- Owner: juliencrn
- Created: 2021-12-26T16:42:49.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-01T19:08:10.000Z (almost 4 years ago)
- Last Synced: 2024-10-12T01:11:26.855Z (12 months ago)
- Topics: runtime, rust, tokio
- Language: Rust
- Homepage:
- Size: 7.81 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Mini-redis
Build a mini-redis app following the official [Tokio tutorial](https://tokio.rs/tokio/tutorial) to learn how to build stuff on top on Tokio, a Rust runtime.
# Script
```sh
# Run the server
cargo run# Run the client
cargo run --example hello-redis
```