- 05 Mar, 2020 7 commits
-
-
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 33 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
-
Oran Agra authored
When active defrag kicks in and finds a big list, it will create a bookmark to a node so that it is able to resume iteration from that node later. The quicklist manages that bookmark, and updates it in case that node is deleted. This will increase memory usage only on lists of over 1000 (see active-defrag-max-scan-fields) quicklist nodes (1000 ziplists, not 1000 items) by 16 bytes. In 32 bit build, this change reduces the maximum effective config of list-compress-depth and list-max-ziplist-size (from 32767 to 8191)
-
Guy Benoish authored
-
hayashier authored
-
antirez authored
-
Itamar Haber authored
... with CSC disabled
-
antirez authored
This fixes WATCH and client side caching with keys expiring because of a synchronous access and not because of background expiring.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-