From: Pieter Noordhuis Date: Sat, 5 May 2012 00:26:24 +0000 (-0700) Subject: Compare integers in ziplist regardless of encoding X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/bf219416868479b8324e7bc1552611dfd28a56b9?ds=inline;hp=bf219416868479b8324e7bc1552611dfd28a56b9 Compare integers in ziplist regardless of encoding Because of the introduction of new integer encoding types for ziplists in the 2.6 tree, the same integer value may have a different encoding in different versions of the ziplist implementation. This means that the encoding can NOT be used as a fast path in comparing integers. ---