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
Rename the binaries to redis-server, redis-sentinel, redis-check-rdb, redis-check-aof, redis-cli, redis-benchmark and their corresponding .c and .h files. Done in 3863227.
Get rid of the Redis name, except where it's needed for API compatibility. This can be done once we have a name.
Some of the below changes have a low risk of breaking e.g. script parsing logs or INFO output, but I'd say those are acceptable.
☑️ Make variables
REDIS_CFLAGSandREDIS_LDFLAGS. Done in 3863227. They were renamed toSERVER_*.Occurrences of "Redis" in comments #148
Occurrences of "Redis" in error replies #204
Occurrences of "Redis" in log entries #207
Occurrences of "Redis" in command JSON files (
src/commands/*.json) Untrademark json files #35The output of INFO server #41
We have two options:
The reply from HELLO #61
Client-side caching "__redis__:invalidate" #280
Rename internal struct and function names (redisCommand, redisDb, etc.) #144
Macros for including a file once, like
#ifndef __REDIS_COMMANDS_H#137Rename
src/redisassert.ctosrc/serverassert.c#134Rename
redis.conftovalkey.conf#135Add Lua global object
serveras alias forredis#136Rename the binaries to
redis-server,redis-sentinel,redis-check-rdb,redis-check-aof,redis-cli,redis-benchmarkand their corresponding .c and .h files. Done in 3863227.Update references to the binaries (in scripts and tests) #153
Create "redis" symlinks for the binaries in
make install#147Add
valkeymodule.h, ABI compatible with redismodule #146Change default pidfile #321
Rename and change variable names in
utils/redis_init_script#354