Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```