]> git.saurik.com Git - redis.git/shortlog
redis.git
2010-06-02  Pieter Noordhuischange how arguments are passed from the AOF tests
2010-06-02  Pieter Noordhuisscope res variable outside test
2010-06-02  Pieter Noordhuistags for existing tests
2010-06-02  Pieter Noordhuispass tags to filter and match via arguments
2010-06-02  Pieter Noordhuisbasic support to tag tests
2010-06-02  Pieter Noordhuischanged how server.tcl accepts options to support more...
2010-06-02  Pieter Noordhuisremoved obsolete code
2010-06-02  Pieter Noordhuiscatch exceptions in the server proc, to be able to...
2010-06-02  antirezMerge branch 'master' into smallkeys
2010-06-02  antirezsmarter swapout policy on AOF too
2010-06-02  antirezbetter swapout policy while loading RDB file
2010-06-02  antirezminor code comment change
2010-06-01  Pieter Noordhuisuse integer types from stdint.h to be more verbose...
2010-06-01  Pieter Noordhuisadded stress test for heavy i/o in ziplists
2010-06-01  Pieter Noordhuisfix signedness errors in ziplist testing code
2010-06-01  antirezminor code movements and free object pull restored...
2010-06-01  antirezTODO updated with syslog plans for 2.2
2010-06-01  antirezDebug message was printing stuff that are sometimes...
2010-06-01  antirezMerge branch 'smallkeys' of github.com:antirez/redis...
2010-06-01  antirezfixed a few comments
2010-06-01  antirezfixed bugs introduced in the rewrite of the new VM...
2010-05-31  Pieter Noordhuissupport rewriting the AOF with dual list encoding
2010-05-31  Pieter Noordhuissmall refactor of fwrite* commands for AOF rewrite...
2010-05-31  Pieter Noordhuisuse list wrapper functions in computing the dataset...
2010-05-31  Pieter NoordhuisziplistNext should work as expected when called with...
2010-05-31  Pieter Noordhuisupdate SORT to work with the dual list encoding
2010-05-31  Pieter Noordhuisfunction to create a new ziplist encoded list
2010-05-31  antirezfixed missing incrRefCount
2010-05-31  Pieter Noordhuissupport rdb saving/loading with dual list encoding
2010-05-31  Pieter Noordhuisfixed signedness and disambiguate variable names
2010-05-31  Pieter Noordhuisadded rdb save function to directly save long long...
2010-05-31  Pieter Noordhuisupdate RPOPLPUSH to support dual encoding
2010-05-31  Pieter Noordhuisupdate list iteration semantic to work as expected...
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-31  antirezfirst step of VM rewrite. blocking VM tests passing...
2010-05-31  antirezMerge branch 'no-appendfsync-on-rewrite'
2010-05-30  Pieter Noordhuisfix LREM to remove *all* occurances when a zero argumen...
2010-05-30  Pieter Noordhuisfixed LINDEX to always return bulk response
2010-05-30  Pieter Noordhuisthe tail offset must be an integer pointer to hold...
2010-05-30  Pieter Noordhuisupdate LREM to support dual encoding via extra iteratio...
2010-05-30  Pieter Noordhuissupport dual encoding in LTRIM
2010-05-30  Pieter Noordhuisupdate LRANGE to use basic iteration code to support...
2010-05-30  Pieter Noordhuisinline support for dual encoding in the LINDEX and...
2010-05-29  Pieter Noordhuisgeneric pop and length function for ziplist encoding
2010-05-29  Pieter Noordhuisgeneric push function that supports the dual encoding
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 Noordhuisadded header ziplist.h
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 Noordhuispartial revert of c80df5 because ziplist functions...
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
2010-05-29  Pieter Noordhuisextracted general methods to zip.c for reuse in other...
2010-05-28  antirezcommand table size calculated with sizeof
2010-05-28  Pieter Noordhuisuse qsort and bsearch to lookup commands in O(log(N...
2010-05-28  antirezMerge branch 'cli-stdin' of git://github.com/pietern...
2010-05-28  antirezFixed ZINCR Nan bugs leading to server crash and added...
2010-05-28  antirezredis.conf new features the new option, a minor typo...
2010-05-28  antirezdon't fsync after a rewrite if appendfsync is set to...
2010-05-28  antirezadded new option no-appendfsync-on-rewrite to avoid...
2010-05-27  antirezAdded Git sha1 and dirty status in redis-server -v...
2010-05-27  antirezchanged the message in the Makefile with the new comman...
2010-05-27  Vincent PalmerFixed typo.
2010-05-27  antireznew multi/exec tests
2010-05-26  Pieter Noordhuisbuild command outside while loop
2010-05-26  Pieter Noordhuisrequire the flag "-c" to be used for redis-cli to read...
2010-05-26  antirezMerge branch 'master' into nested-multi
2010-05-26  antirezFix EXEC bug that was leaving the client in dirty statu...
2010-05-26  antirezraise error on nested MULTI and WATCH inside multi
2010-05-26  Josiah Carlsonallow regular sets to be passed to zunionstore/zinterstore
2010-05-25  antirezVersion is now 2.1.1
next