- 06 Feb, 2020 23 commits
-
-
Salvatore Sanfilippo authored
Memory leak when bind config is provided twice
-
Salvatore Sanfilippo authored
fix maxmemory config warning
-
Salvatore Sanfilippo authored
Fix client flags to be int64 in module.c
-
Salvatore Sanfilippo authored
moduleRDBLoadError, add key name, and use panic rather than exit
-
Salvatore Sanfilippo authored
reduce repeated calls to use_diskless_load
-
Salvatore Sanfilippo authored
freeClientAsync don't lock mutex if there's just one thread
-
Salvatore Sanfilippo authored
move restartAOFAfterSYNC from replicaofCommand to replicationUnsetMaster
-
Salvatore Sanfilippo authored
stopAppendOnly resets aof_rewrite_scheduled
-
Salvatore Sanfilippo authored
add SAVE subcommand to ACL HELP and top comment
-
Salvatore Sanfilippo authored
DEBUG HELP - add PROTOCOL
-
Salvatore Sanfilippo authored
Fix small bugs related to replica and monitor ambiguity
-
Guy Benoish authored
-
Oran Agra authored
-
Guy Benoish authored
1. server.repl_no_slaves_since can be set when a MONITOR client disconnects 2. c->repl_ack_time can be set by a newline from a MONITOR client 3. Improved comments
-
Oran Agra authored
-
Oran Agra authored
althouh in theory, users can do BGREWRITEAOF even if aof is disabled, i suppose it is more common that the scheduled flag is set by either startAppendOnly, of a failed initial AOFRW fork (AOF_WAIT_REWRITE)
-
Oran Agra authored
replicationUnsetMaster can be called from other places, not just replicaofCOmmand, and all of these need to restart AOF
-
Oran Agra authored
-
Oran Agra authored
this function possibly iterates on the module list
-
Oran Agra authored
using panic rather than exit means you get s stack trace of the code path that experianced the error, and possibly other info.
-
Oran Agra authored
currently there's no bug since the flags these functions handle are always lower than 32bit, but still better fix the type to prevent future bugs.
-
Oran Agra authored
the warning condition was if usage > limit (saying it'll cause eviction or oom), but in fact the eviction and oom depends on used minus slave buffers. other than fixing the condition, i add info about the current usage and limit, which may be useful when looking at the log.
-
Oran Agra authored
-
- 05 Feb, 2020 6 commits
-
-
Salvatore Sanfilippo authored
TLS: Some redis.conf clarifications.
-
Yossi Gottlieb authored
-
Salvatore Sanfilippo authored
config.c verbose error replies for CONFIG SET, like config file parsing
-
Salvatore Sanfilippo authored
memoryGetKeys helper function so that ACL can limit access to keys for MEMORY command
-
Oran Agra authored
We noticed that the error replies for the generic mechanism for enums are very verbose for config file parsing, but not for config set command. instead of replicating this code, i did a small refactoring to share code between CONFIG SET and config file parsing. and also renamed the enum group functions to be consistent with the naming of other types.
-
Oran Agra authored
-
- 04 Feb, 2020 4 commits
-
-
Salvatore Sanfilippo authored
Set ZSKIPLIST_MAXLEVEL to 32
-
Salvatore Sanfilippo authored
Fix memory leak about lua script
-
WuYunlong authored
-
WuYunlong authored
-
- 03 Feb, 2020 3 commits
-
-
Salvatore Sanfilippo authored
TLS: Fix missing initialization in redis-cli.
-
Salvatore Sanfilippo authored
fix uninitialized info_cb var in module.c
-
Oran Agra authored
-
- 02 Feb, 2020 1 commit
-
-
Leo Murillo authored
-
- 30 Jan, 2020 2 commits
-
-
Salvatore Sanfilippo authored
ld2string should fail if string contains \0 in the middle
-
Guy Benoish authored
This bug affected RM_StringToLongDouble and HINCRBYFLOAT. I added tests for both cases. Main changes: 1. Fixed string2ld to fail if string contains \0 in the middle 2. Use string2ld in getLongDoubleFromObject - No point of having duplicated code here The two changes above broke RM_SaveLongDouble/RM_LoadLongDouble because the long double string was saved with length+1 (An innocent mistake, but it's actually a bug - The length passed to RM_SaveLongDouble should not include the last \0).
-
- 29 Jan, 2020 1 commit
-
-
Yossi Gottlieb authored
-