Path to this page:
./
databases/hiredis,
Minimalistic C client library for the Redis database
Branch: CURRENT,
Version: 1.2.0,
Package name: hiredis-1.2.0,
Maintainer: wiediHiredis 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.
Master sites:
Filesize: 123.258 KB
Version history: (Expand)
- (2023-07-17) Updated to version: hiredis-1.2.0
- (2022-11-25) Updated to version: hiredis-1.1.0
- (2021-10-08) Updated to version: hiredis-1.0.2
- (2021-10-05) Updated to version: hiredis-1.0.1
- (2021-06-24) Updated to version: hiredis-1.0.0
- (2020-03-22) Updated to version: hiredis-0.14.1
CVS history: (Expand)
2023-07-17 21:37:34 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
hiredis: updated to 1.2.0
v1.2.0 with with new adapters, and a great many bug fixes.
🚀 New Features
- Add sdevent adapter @Oipo
- Allow specifying the keepalive interval @michael-grunder
- Add RedisModule adapter @tezc
- Helper for setting TCP_USER_TIMEOUT socket option @zuiderkwast
🐛 Bug Fixes
- Fix a typo in b6a052f. @yossigo
- Fix wincrypt symbols conflict @hudayou
- Don't attempt to set a timeout if we are in an error state. @michael-grunder
- Accept -nan per the RESP3 spec recommendation. @michael-grunder
- Fix colliding option values @zuiderkwast
- Ensure functionality without `_MSC_VER` definition @windyakin
🧰 Maintenance
- Add a test for the TCP_USER_TIMEOUT option. @michael-grunder
- Add -Werror as a default. @yossigo
- CI: Update homebrew Redis version. @yossigo
- Fix typo in makefile. @michael-grunder
- Write a version file for the CMake package @Neverlord
- CMakeLists.txt: respect BUILD_SHARED_LIBS @ffontaine
- Cmake static or shared @autoantwort
- fix typo @tillkruss
- Add a test ensuring we don't clobber connection error. @michael-grunder
- Search for openssl on macOS @michael-grunder
|
2023-01-24 19:36:36 by Thomas Klausner | Files touched by this commit (103) |
Log message:
*: convert to cmake/build.mk
|
2022-11-25 11:40:35 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message:
hiredis: updated to 1.1.0
1.1.0
🐛 Bug Fixes
Add support for nan in RESP3 double
🧰 Maintenance
Add an example that calls redisCommandArgv
fix flag reference
Make freeing a NULL redisAsyncContext a no-op.
CI updates
|
2021-10-26 12:10:08 by Nia Alarie | Files touched by this commit (417) |
Log message:
databases: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
The following distfiles could not be fetched (some may be only fetched
conditionally):
./databases/cstore/distinfo D6.data.ros.gz
./databases/cstore/distinfo cstore0.2.tar.gz
./databases/cstore/distinfo data4.tar.gz
|
2021-10-08 08:46:02 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
hiredis: updated to 1.0.2
1.0.2:
Announcing Hiredis v1.0.2, which fixes CVE-2021-32765 but returns the SONAME to \
the correct value of 1.0.0.
|
2021-10-07 15:35:53 by Nia Alarie | Files touched by this commit (417) |
Log message:
databases: Remove SHA1 distfile hashes
|
2021-10-05 14:14:54 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
hiredis: updated to 1.0.1
1.0.1
Fix for CVE-2021-32765 commit
|
2021-06-23 21:35:44 by Adam Ciarcinski | Files touched by this commit (4) | |
Log message:
hiredis: updated to 1.0.0
Release of v1.0.0
Hiredis v1.0.0 marks the first stable release of Hiredis and introduces
RESP3 support, SSL connections, allocator injection, better Windows support,
and more.
IMPORTANT: There are breaking changes in this release meaning your code
will need to be recompiled and may need small changes. The exact
details of the breaking changes can be found in README.md.
CHANGELOG.md has a detailed list of changes between v0.14.1 and v1.0.0.
|