Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rurumimic/cache
In-memory key-value store
https://github.com/rurumimic/cache
jemalloc libevent memcached server tokio-rs
Last synced: about 2 months ago
JSON representation
In-memory key-value store
- Host: GitHub
- URL: https://github.com/rurumimic/cache
- Owner: rurumimic
- License: bsd-3-clause
- Created: 2023-08-26T04:26:05.000Z (over 1 year ago)
- Default Branch: develop
- Last Pushed: 2023-10-28T07:40:48.000Z (about 1 year ago)
- Last Synced: 2024-04-23T13:56:08.468Z (8 months ago)
- Topics: jemalloc, libevent, memcached, server, tokio-rs
- Language: C
- Homepage:
- Size: 565 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cache
In-memory key-value store.
## Contents
- [docs](docs/README.md)
## Getting Started
### Server
```bash
cargo run --package cache --example server -- --host 127.0.0.1 --port 11211
```### Client
```bash
telnet 127.0.0.1 11211
``````bash
Trying 127.0.0.1...
Connected to 127.0.0.1.
Escape character is '^]'.
hello
^]
telnet> quit
```