https://github.com/ghaztools/rust-caching-svc
I was just using this to learn rust :)
https://github.com/ghaztools/rust-caching-svc
cargo make pre-commit redis rust
Last synced: about 1 month ago
JSON representation
I was just using this to learn rust :)
- Host: GitHub
- URL: https://github.com/ghaztools/rust-caching-svc
- Owner: GhazTools
- Created: 2024-06-03T19:26:53.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-04T03:42:23.000Z (almost 2 years ago)
- Last Synced: 2025-01-03T22:27:04.482Z (over 1 year ago)
- Topics: cargo, make, pre-commit, redis, rust
- Language: Rust
- Homepage:
- Size: 35.2 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Description
A simple rust service implementation for caching items using Redis
## Before You Run
You must have rust installed
## How To Run
To run your service you can do the following
```bash
make full-build
make run
```
or
```bash
cargo clean && cargo build && cargo run
```
## Additional Information
### Organizing your imports
To organize your Cargo.toml files, you can use cargo-sort which needs to be installed.
cargo-sort takes a look at tomlfmt.toml to figure out how to sort your toml file
```bash
cargo install cargo-sort
cargo sort
```