hiredis 0.10.1-2 source package in Ubuntu

Changelog

hiredis (0.10.1-2) unstable; urgency=low
  * Re-enable tests, start Redis with proper configuration before testing -- Alessandro Ghedini <email address hidden>  Thu, 30 Jun 2011 19:46:04 +0200

Upload details

Uploaded by:
Alessandro Ghedini
Uploaded to:
Sid
Original maintainer:
Alessandro Ghedini
Architectures:
any
Section:
libs
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release universe libs

Downloads

File Size SHA-256 Checksum
hiredis_0.10.1-2.dsc 1.2 KiB a14ddb10e91fc63e8287c01a9b5b97bc12d3741d3aaaeb9abcd391de4b5667cc
hiredis_0.10.1.orig.tar.gz 39.1 KiB fed36cc82220a1e1232380ddf3d346956e8fa09708ca87c958371bdd594bcbae
hiredis_0.10.1-2.debian.tar.gz 3.8 KiB 694245762819c3b9766dd766473bff67fae8ab45f815d66b79fc0a8c76ade085

No changes file available.

Binary packages built by this source

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

No description available for libhiredis-dev in ubuntu quantal.

libhiredis0.10: Minimalistic C client library for Redis

 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.