Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/autodidaddict/retroboard
A sample crate illustrating data access with Redis and Rust
https://github.com/autodidaddict/retroboard
agile cache database redis rust sample
Last synced: 18 days ago
JSON representation
A sample crate illustrating data access with Redis and Rust
- Host: GitHub
- URL: https://github.com/autodidaddict/retroboard
- Owner: autodidaddict
- Created: 2017-05-16T12:53:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-03T23:14:54.000Z (over 7 years ago)
- Last Synced: 2024-11-09T15:46:59.183Z (2 months ago)
- Topics: agile, cache, database, redis, rust, sample
- Language: Rust
- Size: 12.7 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Retroboard
Retroboard is a sample Rust library that exposes functions that could be used to maintain agile _retrospective_ boards for developers.
This is designed as a sample application to illustrate the use of Redis as a backing store for an application where we might otherwise have chosen a store like **MongoDB** or **mySQL**.
Warning : because the Redis tests right now are integration tests, and each test purges when its done, if the tests are run concurrently they can fail. Until this ugliness is fixed, force a single-threaded test via:
```
RUST_TEST_THREADS=1 cargo test
```