- 25 Apr, 2016 3 commits
- 18 Apr, 2016 2 commits
-
-
Salvatore Sanfilippo authored
Fix ZINCRBY return value.
-
Damian Janowski authored
-
- 15 Apr, 2016 2 commits
- 14 Apr, 2016 2 commits
- 13 Apr, 2016 3 commits
- 12 Apr, 2016 1 commit
-
-
antirez authored
-
- 06 Apr, 2016 1 commit
-
-
antirez authored
As a side effect, cat commands.txt | redis-cli now is able to handle lines more than 4096 bytes.
-
- 04 Apr, 2016 3 commits
-
-
antirez authored
This fix was written by Anthony LaTorre. The old code mis-calculated the amount of time to wait till next event.
-
antirez authored
-
antirez authored
This fix was suggested by Anthony LaTorre, that provided also a good test case that was used to verify the fix. The problem with the old implementation is that, the time returned by a timer event (that is the time after it want to run again) is added to the event *start time*. So if the event takes, in order to run, more than the time it says it want to be scheduled again for running, an infinite loop is triggered.
-
- 02 Mar, 2016 9 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
See issue #3114.
-
Salvatore Sanfilippo authored
bitops/bitfield: fix length, overflow condition and *sign
-
Sun He authored
-
antirez authored
We want to report the original command in the stats, for example GEOADD, even when what is actually executed is the ZADD implementation.
-
- 29 Feb, 2016 1 commit
-
-
antirez authored
-
- 26 Feb, 2016 3 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
The new bitfield command is an extension to the Redis bit operations, where not just single bit operations are performed, but the array of bits composing a string, can be addressed at random, not aligned offsets, with any width unsigned and signed integers like u8, s5, u10 (up to 64 bit signed integers and 63 bit unsigned integers). The BITFIELD command supports subcommands that can SET, GET, or INCRBY those arbitrary bit counters, with multiple overflow semantics. Trivial and credits: A similar command was imagined a few times in the past, but for some reason looked a bit far fetched or not well specified. Finally the command was proposed again in a clear form by Yoav Steinberg from Redis Labs, that proposed a set of commands on arbitrary sized integers stored at bit offsets. Starting from this proposal I wrote an initial specification of a single command with sub-commands similar to what Yoav envisioned, using short names for types definitions, and adding control on the overflow. This commit is the resulting implementation. Examples: BITFIELD mykey OVERFLOW wrap INCRBY i2 10 -1 GET i2 10
-
- 19 Feb, 2016 1 commit
-
-
Salvatore Sanfilippo authored
Fixes double conversions in GEO
-
- 18 Feb, 2016 6 commits
-
-
Itamar Haber authored
-
Itamar Haber authored
-
Itamar Haber authored
-
antirez authored
Send a long double or double as a bulk reply, in a human friendly format.
-
antirez authored
-
antirez authored
Related to issue #3019.
-
- 17 Feb, 2016 1 commit
-
-
antirez authored
Now elements added to lists are incremental numbers in order to understand, when inconsistencies are found, what is the order in which the elements were added. Also the error now provides both the expected and found value.
-
- 15 Feb, 2016 1 commit
-
-
antirez authored
Close #3086.
-
- 10 Feb, 2016 1 commit
-
-
antirez authored
-