resp-async 0.0.6

Asynchronous Redis protocol parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Asynchronous Redis protocol (RESP) parser and framework for implementing server

All examples can be executed with:

run server
```
cargo run --example $name
```

to connect to server  use
```
redis-cli -h 127.0.0.1 -p 8080
```


A high level description of each example is:

* [`history`]history.rs - a tiny server that always return history command the client requested.