]> git.saurik.com Git - redis.git/history - ziplist.c
change ziplistRepr to use the entry struct
[redis.git] / ziplist.c
2010-05-29  Pieter Noordhuischange ziplistRepr to use the entry struct
2010-05-29  Pieter Noordhuismodify compare function to check if the encoding is...
2010-05-29  Pieter Noordhuisuse a struct to retrieve all details for an entry
2010-05-29  Pieter Noordhuisinitial implementation for making the ziplist doubly...
2010-05-29  Pieter Noordhuisfix some warnings
2010-05-29  Pieter Noordhuisadd function to retrieve ziplist size in bytes
2010-05-29  Pieter Noordhuisfix compare function of ziplist to only load integer...
2010-05-29  Pieter Noordhuisadd function to retrieve length of ziplist
2010-05-29  Pieter Noordhuisre-introduce ZIP_BIGLEN for clarity
2010-05-29  Pieter Noordhuiscode to compare strings with entries in ziplist, regard...
2010-05-29  Pieter Noordhuisupdated iteration code to work well with different...
2010-05-29  Pieter Noordhuismove code from zip.c to ziplist.c
2010-05-29  Pieter Noordhuisinitial work for integer encoding in ziplists
2010-05-29  Pieter Noordhuismove length housekeeping to a macro
2010-05-29  Pieter Noordhuisallow entries to be deleted in place when iterating...
2010-05-29  Pieter Noordhuisallow pointer to be stored to current element when...
2010-05-29  Pieter Noordhuisrename ziplistDelete to ziplistDeleteRange
2010-05-29  Pieter Noordhuiscode to delete an inner range from the ziplist
2010-05-29  Pieter Noordhuischeck if *value is non-NULL before setting it
2010-05-29  Pieter Noordhuischange iteration code to avoid allocating a new sds...
2010-05-29  Pieter Noordhuiscode to iterate over a ziplist
2010-05-29  Pieter Noordhuisimplementation for a ziplist with push and pop support