hiredis icon indicating copy to clipboard operation
hiredis copied to clipboard

Minimalistic C client for Redis >= 1.2

Results 135 hiredis issues
Sort by recently updated
recently updated
newest added

Build steps: ``` git clone https://github.com/ithewei/libhv cd libhv ./configure && make && sudo make install git clone -b libhv https://github.com/ithewei/hiredis cd hiredis mkdir build cd build cmake .. -DENABLE_EXAMPLES=ON make...

We recently bumped the hiredis bundled with Redis to support `PUSH` messages and ran into [quite a few roadblocks](https://github.com/redis/redis/pull/7609) over our slightly divergent copies of the SDS library. Being both...

ng
wishlist

I noly set options.connect_timeout, not options.command_timeout. But, it still has timeout. To get the latest message, using `block 0` , not polling. ``` redisAsyncCommand(c, on_stream, (char *)"->", "XREADGROUP block 0...

bug

Adds support to cmake for building `example/example-qt.cpp`. Also creates a shared library that is needed to easily use `adapter/qt.h`, due to how QT's MOC works.

"%zu" is not supported int vs2013. In the function redisvFormatCommand, "pos" will be bad. ![image](https://user-images.githubusercontent.com/55131944/93962094-86f9fb80-fd8c-11ea-9650-60f64b483131.png)

Avoid MITM attacks by checking whether the server's certificate contains the server's hostname. Currently this works only with OpenSSL 1.1.0 or newer.

I'm trying to port the hiredis client onto a box running Linux 4.14 kernel that supports multiple VRFs. The Redis server may be reachable through any of the configured VRFs....

The current implementation doesn't keep a callback for `UNSUBSCRIBE` command, the reason from the code base comments is that: every channel will receive an unsubscribe msg. This design cause two...