1. 02 3月, 2016 4 次提交
  2. 29 2月, 2016 1 次提交
  3. 26 2月, 2016 3 次提交
    • A
      BITFIELD: Fix #<index> form parsing. · 11745e09
      antirez 提交于
      11745e09
    • A
      BITFIELD: Support #<index> offsets form. · 2800d090
      antirez 提交于
      2800d090
    • A
      BITFIELD command initial implementation. · 70af626d
      antirez 提交于
      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
      70af626d
  4. 19 2月, 2016 5 次提交
  5. 18 2月, 2016 2 次提交
  6. 17 2月, 2016 1 次提交
    • A
      Cluster: resharding test provides more state when failing. · 15f37ebd
      antirez 提交于
      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.
      15f37ebd
  7. 15 2月, 2016 1 次提交
  8. 10 2月, 2016 2 次提交
  9. 08 2月, 2016 1 次提交
  10. 05 2月, 2016 1 次提交
  11. 04 2月, 2016 1 次提交
  12. 03 2月, 2016 1 次提交
  13. 02 2月, 2016 6 次提交
  14. 29 1月, 2016 9 次提交
  15. 28 1月, 2016 1 次提交
  16. 27 1月, 2016 1 次提交