You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Internal struct and function names. Replace "redis" => "server". This isn't really a trademark problem. We just want to make the code a little more Redis agnostic.
struct redisCommand => serverCommand (The struct defined in server.h, not the function in hiredis.)
Functions...
long long redisPopcount(void *s, long count);
int redisSetProcTitle(char *title);
int validateProcTitleTemplate(const char *template);
int redisCommunicateSystemd(const char *sd_notify_msg);
void redisSetCpuAffinity(const char *cpulist);
int redisFork(int purpose);
Note 1: We shouldn't change deps/hiredis/ (redisContext, redisCommand(), redisBufferWrite(),
etc.) since it's a vendored dependency. If we want to change it, it should probably be by forking it and vendoring the forked dependency instead.
Note 2: Don't change the module API here. See #146.
Internal struct and function names. Replace "redis" => "server". This isn't really a trademark problem. We just want to make the code a little more Redis agnostic.
long long redisPopcount(void *s, long count);
int redisSetProcTitle(char *title);
int validateProcTitleTemplate(const char *template);
int redisCommunicateSystemd(const char *sd_notify_msg);
void redisSetCpuAffinity(const char *cpulist);
int redisFork(int purpose);
Note 1: We shouldn't change deps/hiredis/ (redisContext, redisCommand(), redisBufferWrite(),
etc.) since it's a vendored dependency. If we want to change it, it should probably be by forking it and vendoring the forked dependency instead.
Note 2: Don't change the module API here. See #146.