]> git.saurik.com Git - redis.git/history - ziplist.c
fix signedness errors in ziplist testing code
[redis.git] / ziplist.c
2010-06-01  Pieter Noordhuisfix signedness errors in ziplist testing code
2010-05-31  Pieter NoordhuisziplistNext should work as expected when called with...
2010-05-31  Pieter Noordhuisfixed signedness and disambiguate variable names
2010-05-31  Pieter NoordhuisziplistDelete no longer needs a direction now ziplistPr...
2010-05-31  Pieter NoordhuisziplistPrev should return the tail when the argument...
2010-05-30  Pieter Noordhuisthe tail offset must be an integer pointer to hold...
2010-05-29  Pieter Noordhuischange delete function to accept a direction argument...
2010-05-29  Pieter Noordhuisexpose extra functionality from ziplist.c
2010-05-29  Pieter Noordhuiscode style consistency fixes
2010-05-29  Pieter NoordhuisziplistIndex now accepts negative indices
2010-05-29  Pieter Noordhuisfix compile warnings
2010-05-29  Pieter Noordhuisuse simpler encoding for the length of the previous...
2010-05-29  Pieter Noordhuisreplace functions to get pointers to head and tail...
2010-05-29  Pieter Noordhuisfunction to insert an element at an arbitrary position...
2010-05-29  Pieter Noordhuisextract a generic delete function that can be used...
2010-05-29  Pieter Noordhuisuse the entry struct in zipRawEntryLength
2010-05-29  Pieter Noordhuisrename argument names to s* to disambiguate from e*
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