Licence
[hiredist.git] / pkg-descr
1 Hiredis is a minimalistic C client library for the Redis database.
2
3 It is minimalistic because it just adds minimal support for the protocol,
4 but at the same time it uses an high level printf-alike API in order to make
5 it much higher level than otherwise suggested by its minimal code base and
6 the lack of explicit bindings for every Redis command.
7
8 Apart from supporting sending commands and receiving replies, it comes with
9 a reply parser that is decoupled from the I/O layer. It is a stream parser
10 designed for easy reusability, which can for instance be used in higher
11 level language bindings for efficient reply parsing.
12
13 Hiredis only supports the binary-safe Redis protocol, so you can use it with
14 any Redis version >= 1.2.0.
15
16 The library comes with multiple APIs. There is the synchronous API, the
17 asynchronous API and the reply parsing API.
18
19 WWW: https://github.com/redis/hiredis