hiredis 0.13.1-2 source package in Ubuntu

Changelog

hiredis (0.13.1-2) unstable; urgency=medium

  * Upload to unstable

 -- Tom Lee <email address hidden>  Fri, 12 Jun 2015 08:46:56 -0700

Upload details

Uploaded by:
Tom Lee
Uploaded to:
Sid
Original maintainer:
Tom Lee
Architectures:
any
Section:
libs
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
hiredis_0.13.1-2.dsc 2.0 KiB 73a7d884a0f3a790f2f7a62f9cd0c1830126f7295c18feb25de6007cd5155809
hiredis_0.13.1.orig.tar.gz 53.6 KiB 8865105e15331156a74b64aafbfd3f8c784a8375e003a55512dcca3d82168487
hiredis_0.13.1-2.debian.tar.xz 7.6 KiB bb96bb2dc0c0b983c257e24664537033a0a3a8acf3ffcc022770c4e78691fa63

Available diffs

No changes file available.

Binary packages built by this source

libhiredis-dbg: No summary available for libhiredis-dbg in ubuntu wily.

No description available for libhiredis-dbg in ubuntu wily.

libhiredis-dev: No summary available for libhiredis-dev in ubuntu wily.

No description available for libhiredis-dev in ubuntu wily.

libhiredis-dev-dbgsym: No summary available for libhiredis-dev-dbgsym in ubuntu wily.

No description available for libhiredis-dev-dbgsym in ubuntu wily.

libhiredis0.13: No summary available for libhiredis0.13 in ubuntu wily.

No description available for libhiredis0.13 in ubuntu wily.

libhiredis0.13-dbgsym: debug symbols for package libhiredis0.13

 Hiredis is a minimalistic C client library for the Redis database. It is
 minimalistic because it just adds minimal support for the protocol, but
 at the same time it uses an high level printf-alike API in order to make
 it much higher level than otherwise suggested by its minimal code base
 and the lack of explicit bindings for every Redis command.
 .
 Apart from supporting sending commands and receiving replies, it comes
 with a reply parser that is decoupled from the I/O layer. It is a stream
 parser designed for easy reusability, which can for instance be used in
 higher level language bindings for efficient reply parsing.
 .
 Hiredis only supports the binary-safe Redis protocol, so you can use it
 with any Redis version >= 1.2.0.
 .
 The library comes with multiple APIs. There is the synchronous API, the
 asynchronous API and the reply parsing API.