- 12 Mar, 2020 3 commits
-
-
lifubang authored
Signed-off-by:
lifubang <lifubang@acmcoder.com>
-
Johannes Truschnigg authored
"Partial Resynchronization" is a special variant of replication success that we have to tell systemd about if it is managing redis-server via a Type=Notify service unit.
-
antirez authored
See #6964. The root cause is that the event loop may be resized from an event callback itself, causing the event pointer to be invalid.
-
- 05 Mar, 2020 19 commits
-
-
antirez authored
-
qetu3790 authored
LRU_CYCLE_PERIOD is defined,but not used.
-
hwware authored
-
ShooterIT authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
The idea is that very few commands have a lot of keys, and when this happens the allocation time becomes neglegible.
-
Oran Agra authored
now that we may use it more often (ACL), these excessive calls to malloc and free can become an overhead.
-
antirez authored
-
antirez authored
-
Oran Agra authored
The callback approach we took is very efficient, the module can do any filtering of keys without building any list and cloning strings, it can also read data from the key's value. but if the user tries to re-open the key, or any other key, this can cause dict re-hashing (dictFind does that), and that's very bad to do from inside dictScan. this commit protects the dict from doing any rehashing during scan, but also warns the user not to attempt any writes or command calls from within the callback, for fear of unexpected side effects and crashes.
-
Guy Benoish authored
-
Oran Agra authored
-
Oran Agra authored
-
Guy Benoish authored
-
antirez authored
This makes simpler to give people help when posting such kind of errors in the mailing list or other help forums, because sometimes the directive looks well spelled, but the version of Redis they are using is not able to support it.
-
- 27 Feb, 2020 18 commits
-
-
bodong.ybd authored
-
antirez authored
-
antirez authored
-
Ponnuvel Palaniyappan authored
-
antirez authored
-
wangyuan21 authored
-
srzhao authored
-
meir@redislabs.com authored
-
hwware authored
-
hwware authored
-
Hengjian Tang authored
-
Ariel authored
-
Guy Benoish authored
Use built-in alsoPropagate mechanism that wraps commands in MULTI/EXEC before sending them to replica/AOF
-
Guy Benoish authored
-
antirez authored
-
hwware authored
-
Madelyn Olson authored
-
Madelyn Olson authored
-