Package Details: hiredis-git 20120401-1

Package Base: hiredis-git
Description: Minimalistic C client for Redis >= 1.2
Upstream URL: http://github.com/antirez/hiredis/
Category: lib
Licenses: BSD
Submitter: None
Maintainer: None
Last Packager: None
Votes: 1
First Submitted: 2010-12-03 13:02
Last Updated: 2012-04-01 15:51

Dependencies (1)

Required by (1)

Sources

  • hiredis.pc

Latest Comments

Anonymous comment

2013-07-30 08:06

An updated PKGBUILD can be found here: https://raw.github.com/padakuro/archlinux-pkgbuilds/master/hiredis-git/PKGBUILD

Hope it works & fulfills the guidelines :)

Comment by fmang

2013-07-05 20:05

Please update this PKGBUILD too. Some users may want to use the latest version.
Besides, there is no point in keeping a broken package in AUR.

Comment by tsachev

2013-06-07 11:34

I just added PKGBUILD with 0.11.0 upstream version here https://aur.archlinux.org/packages/hiredis

Anonymous comment

2012-11-21 10:51

The repo moved to https://github.com/redis/hiredis
In order to makepkg this PKGBUILD, the makedepends and gitroot have to be changed. A fixed PKGBUILD would be great!

Anonymous comment

2012-03-07 19:26

I'm sorry for not being true to my promise I made earlier. There is another user that will take the responsibility of maintaining this package soon.

Anonymous comment

2012-01-27 15:15

I will get to updating this package on monday.

Comment by paul.c

2011-04-27 19:10

Please fix dependencies. ('git make') should be ('git' 'make')

Comment by paul.c

2011-04-27 19:09

Please fix dependencies. ('git make') should be ('git' 'make')

Anonymous comment

2010-12-03 13:07

From the hiredis readme:

HIREDIS

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.