/hiredis-v

Inherited from hiredis-vip, support redis cluster authenticate

Primary LanguageCGNU General Public License v3.0GPL-3.0

HIREDIS-V

hiredis-v is a C client library for the Redis database. hiredis-v fully contained and inherit from hiredis-vip:(https://github.com/vipshop/hiredis-vip)

CLUSTER AUTH SUPPORT

ADD AUTHENTICATE API:

int redisClusterSetOptionPassword(redisClusterContext *cc, const char *password);

HOW TO USE:

redisClusterContext *cc = redisClusterContextInit();

redisClusterSetOptionPassword(cc, "your password");

redisClusterSetOptionAddNodes(cc, "your cluster info");

redisClusterConnect2(cc);

MORE INFORMATION:

more information, see https://github.com/vipshop/hiredis-vip/wiki

AUTHORS

Hiredis-v was maintained and used at wuli1999(https://github.com/wuli1999.)