- 12 Feb, 2020 1 commit
-
-
lifubang authored
Signed-off-by:
lifubang <lifubang@acmcoder.com>
-
- 10 Feb, 2020 2 commits
-
-
Salvatore Sanfilippo authored
[FIX] revisit CVE-2015-8080 vulnerability
-
Seunghoon Woo authored
-
- 06 Feb, 2020 34 commits
-
-
Salvatore Sanfilippo authored
Diskless-load emptyDb-related fixes
-
Guy Benoish authored
1. Call emptyDb even in case of diskless-load: We want modules to get the same FLUSHDB event as disk-based replication. 2. Do not fire any module events when flushing the backups array. 3. Delete redundant call to signalFlushedDb (Called from emptyDb).
-
antirez authored
-
antirez authored
-
Salvatore Sanfilippo authored
fix ssl args check for redis-cli
-
Salvatore Sanfilippo authored
Exclude "keymiss" notification from NOTIFY_ALL
-
Salvatore Sanfilippo authored
update RM_SignalModifiedKey doc comment
-
Salvatore Sanfilippo authored
Add handling of short read of module id in rdb
-
Salvatore Sanfilippo authored
TLS: Update documentation.
-
Salvatore Sanfilippo authored
A few non-data commands that should be allowed while loading or stale
-
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
-
Oran Agra authored
SELECT, and HELLO are commands that may be executed by the client as soon as it connects, there's no reason to block them, preventing the client from doing the rest of his sequence (which might just be INFO or CONFIG, etc). MONITOR, DEBUG, SLOWLOG, TIME, LASTSAVE are all non-data accessing commands, which there's no reason to block.
-
- 05 Feb, 2020 3 commits
-
-
Yossi Gottlieb authored
-
Oran Agra authored
-
Salvatore Sanfilippo authored
TLS: Some redis.conf clarifications.
-