https://github.com/rurumimic/cache
In-memory key-value store
https://github.com/rurumimic/cache
jemalloc libevent memcached server tokio-rs
Last synced: 4 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 (almost 2 years ago)
- Default Branch: develop
- Last Pushed: 2024-10-03T16:13:04.000Z (9 months ago)
- Last Synced: 2025-01-03T08:30:16.011Z (6 months ago)
- Topics: jemalloc, libevent, memcached, server, tokio-rs
- Language: Rust
- Homepage:
- Size: 10.7 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
```