1. 08 May, 2020 13 commits
  2. 01 May, 2020 4 commits
  3. 30 Apr, 2020 19 commits
  4. 28 Apr, 2020 4 commits
    • Oran Agra's avatar
      hickup, re-fix dictEncObjKeyCompare · b712fba1
      Oran Agra authored
      come to think of it, in theory (not in practice), getDecodedObject can
      return the same original object with refcount incremented, so the
      pointer comparision in the previous commit was invalid.
      so now instead of checking the encoding, we explicitly check the
      refcount.
      b712fba1
    • Oran Agra's avatar
      fix loading race in psync2 tests · ea63aea7
      Oran Agra authored
      ea63aea7
    • antirez's avatar
      Rework comment in dictEncObjKeyCompare(). · 64e588bf
      antirez authored
      64e588bf
    • Oran Agra's avatar
      allow dictFind using static robj · 0d1e8c93
      Oran Agra authored
      since the recent addition of OBJ_STATIC_REFCOUNT and the assertion in
      incrRefCount it is now impossible to use dictFind using a static robj,
      because dictEncObjKeyCompare will call getDecodedObject which tries to
      increment the refcount just in order to decrement it later.
      0d1e8c93