- 14 Mar, 2019 15 commits
-
-
antirez authored
-
Guy Benoish authored
In some cases processMultibulkBuffer uses sdsMakeRoomFor to expand the querybuf, but later in some cases it uses that query buffer as is for an argv element (see "Optimization"), which means that the sds in argv may have a lot of wasted space, and then in case modules keep that argv RedisString inside their data structure, this space waste will remain for long (until restarted from rdb).
-
Guy Benoish authored
-
Guy Benoish authored
-
Guy Benoish authored
-
Guy Benoish authored
The string representation of `long double` may take up to ~5000 chars (see PR #3745). Before this fix HINCRBYFLOAT would never overflow (since the string could not exceed 256 chars). Now it can.
-
Guy Benoish authored
-
Guy Benoish authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
Based on ideas and code in PR #5560 by @MeirShpilraien.
-
antirez authored
-
MeirShpilraien authored
-
- 13 Mar, 2019 7 commits
-
-
zhaozhao.zz authored
Fix issue #5785, in case create group on a key is not stream.
-
antirez authored
-
chendianqiang authored
-
Steve Webster authored
-
Steve Webster authored
The XCLAIM docs state the XCLAIM increments the delivery counter for messages. This PR makes the code match the documentation - which seems like the desired behaviour - whilst still allowing RETRYCOUNT to be specified manually. My understanding of the way streamPropagateXCLAIM() works is that this change will safely propagate to replicas since retry count is pulled directly from the streamNACK struct. Fixes #5194
-
swilly22 authored
-
swilly22 authored
-
- 10 Mar, 2019 2 commits
-
-
antirez authored
-
John Sully authored
-
- 04 Mar, 2019 1 commit
-
-
Frank Meier authored
-
- 01 Mar, 2019 2 commits
-
-
Oran Agra authored
* bigkeys used to fail on databases with module type keys * new code adds more types when it discovers them, but has no way to know element count in modules types yet * bigkeys was missing XLEN command for streams * adding --memkeys and --memkeys-samples to make use of the MEMORY USAGE command see #5167, #5175
-
chendianqiang authored
-
- 22 Feb, 2019 1 commit
-
-
artix authored
Fix issue #5849
-
- 25 Jan, 2019 2 commits
-
-
artix authored
-
Zhicheng Wei authored
-
- 12 Dec, 2018 4 commits
-
-
antirez authored
-
antirez authored
Related to issue #5686 and PR #5689.
-
zhaozhao.zz authored
When loading data, we call processEventsWhileBlocked to process events and execute commands. But if we are loading AOF it's dangerous, because processCommand would call freeMemoryIfNeeded to evict, and that will break data consistency, see issue #5686.
-
antirez authored
See #5663.
-
- 11 Dec, 2018 6 commits
-
-
hdmg authored
-
lsytj0413 authored
-
antirez authored
Verified to be able to trigger at least #5632. Does not report other issues.
-
antirez authored
See #5632.
-
zhaozhao.zz authored
-
antirez authored
Thanks to @soloestoy for discovering this issue in #5667. This is an alternative fix in order to avoid both cycling the clients and also disconnecting clients just having valid read-only transactions pending.
-