Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jharrilim/multiplex
Key-Value store with subscriptions
https://github.com/jharrilim/multiplex
key pubsub rust store value
Last synced: 4 days ago
JSON representation
Key-Value store with subscriptions
- Host: GitHub
- URL: https://github.com/jharrilim/multiplex
- Owner: jharrilim
- License: apache-2.0
- Created: 2020-07-01T02:35:31.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-12T04:27:28.000Z (over 4 years ago)
- Last Synced: 2024-12-19T18:09:52.088Z (15 days ago)
- Topics: key, pubsub, rust, store, value
- Language: Rust
- Homepage: https://crates.io/crates/multiplex
- Size: 53.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Multiplex
Multiplex is a key-value store with the ability to publish and subscribe
to keys.## Running the Application
Runs on http://localhost:8080
```sh
cargo run
```## Routes
### [GET] /store/{key}
Get's a value that was set for this key.
### [SET] /store/{key}
Set's a value for the given key using a raw string in the request body.