redis_sentinel icon indicating copy to clipboard operation
redis_sentinel copied to clipboard

A redis sentinel client base on hiredis and in C.

Results 1 redis_sentinel issues
Sort by recently updated
recently updated
newest added

void redis_sentinel_release(redis_sentinel *context) { redis_sentinel_node *curr = context->list; redis_sentinel_node *next; while (curr) { next = curr->next; free(curr->addr.host); free(curr); curr = next; } free(context); } may have bug,redis_sentinel the name member...