Crates.io | diect-rs |
lib.rs | diect-rs |
version | 0.3.0 |
source | src |
created_at | 2020-09-07 02:32:09.845671 |
updated_at | 2020-09-08 09:13:33.545926 |
description | A simple Redis-like dictionary containing values that will die (or expires). |
homepage | https://diect-rs.herokuapp.com/ |
repository | https://github.com/hbina/diect-rs |
max_upload_size | |
id | 285578 |
size | 106,321 |
A simple Redis-like dictionary containing values that will die (or expires).
There are two types of storage supported.
In this mode, the service will store the values in RAM. Therefore, it will be gone if the service restarts or whatever.
If you want something that have more guarantees that it will remain valid, you can use the persistent mode. This mode will be slower, but it will be backed by a database. Therefore, it is less prone to being gone.
Use this command to watch,
systemfd --no-pid -s http::5000 -- cargo watch -x run
String
s.BloomFilters
and generally try to achieve parity with Redis
.