summaryrefslogtreecommitdiff
path: root/redis.c
Commit message (Expand)AuthorAgeFilesLines
* masterauth option merged, thanks to Anthony Lauzonantirez2009-11-041-1/+29
* ZSets double to string serialization fixedantirez2009-11-031-2/+2
* SORT STORE optionantirez2009-11-011-39/+65
* now Redis prints DB stats just after the startup without to wait a second for...antirez2009-11-011-1/+1
* another fix for append only mode, now read-only operations are not appendedantirez2009-11-011-2/+2
* appendfsync parsing in config file fixed. If you benchmarked Redis against di...antirez2009-11-011-3/+3
* append only file loading fixedantirez2009-11-011-0/+3
* first version of append only file loading -- STILL BROKEN don't use itantirez2009-11-011-83/+197
* Fixed Issue 83:Using TYPE on a zset results in a malformed response from the ...antirez2009-10-311-0/+1
* Fixed compilation on Linuxantirez2009-10-311-2/+2
* append only mode is now able to translate EXPIRE into EXPIREAT transparentlyantirez2009-10-301-1/+25
* appendfsync is now set to NO by defaultantirez2009-10-301-1/+1
* support for appendonly mode no, always, everysecantirez2009-10-301-2/+30
* first fix for append only modeantirez2009-10-301-0/+1
* Initial implementation of append-only mode. Loading still not implemented.antirez2009-10-301-0/+72
* EXPIRE behaviour changed a bit, a negative TTL or an EXPIREAT with unix time ...antirez2009-10-301-2/+3
* EXPIREAT implemented, will be useful for the append-only modeantirez2009-10-301-4/+14
* Fixed Issue 74 (ERR just returned on invalid password), now the error message...antirez2009-10-291-1/+1
* Fixed issue 72 (SLAVEOF shutdowns redis-server on malformed reply)antirez2009-10-291-0/+5
* Fixed issue 77 (Incorrect time in log files) thanks to youwantalexantirez2009-10-291-1/+1
* Fixed Issue 76 (redis-server crashes when it can't connect to MASTER and cli...antirez2009-10-291-1/+1
* ZREMRANGEBYSCORE implemented. Remove a range of elements with score between m...antirez2009-10-291-0/+69
* TODO changes and mostly theoretical minor skiplist changeantirez2009-10-281-1/+1
* ZLEN renamed ZCARD for consistency with SCARDantirez2009-10-281-3/+3
* a fix for the solaris fix itself ;)antirez2009-10-271-1/+2
* More Solaris fixesantirez2009-10-271-0/+3
* A lot of ZSETs tests implemented, and a bug fixed thanks to this new testsantirez2009-10-271-12/+19
* ZSCORE implementedantirez2009-10-271-0/+32
* fix for ZRANGEBYSCOREantirez2009-10-261-1/+1
* ZRANGEBYSCORE implemented. Redis got range queries!antirez2009-10-261-1/+66
* A trivial change makes the new implementation O(log(N)) instead of O(log(N))+...antirez2009-10-261-21/+24
* ZSET now saved on disk like any other typeantirez2009-10-261-0/+39
* double serialization routines implementedantirez2009-10-261-0/+57
* ZSETs random fixes. Now the implementation appears to be pretty stableantirez2009-10-261-0/+3
* another leak fixed. Can't find more for now, but still a bug in ZSETs to fixantirez2009-10-261-1/+5
* ZSETs memory leak #1 solved, another one missingantirez2009-10-261-1/+1
* Fix for skiplists backward linkantirez2009-10-261-1/+1
* Merged Solaris patches provided by Alan Harderantirez2009-10-261-1/+1
* backward support to skiplists for ZREVRANGE, still broken, committing since I...antirez2009-10-261-6/+38
* ZREM implementedantirez2009-10-261-0/+38
* fix for ZADD in score update modeantirez2009-10-241-0/+1
* some work on ZADD against existing element (score update), still broken...antirez2009-10-241-3/+50
* zrange now starts to work. zadd still does not support update and will crash ...antirez2009-10-231-1/+1
* zrange initial hack (not working for now)antirez2009-10-231-0/+57
* first skiplist fix, courtesy of valgrindantirez2009-10-231-1/+1
* zset symbols added to stack trace code. ZSets will simply crash at the momentantirez2009-10-231-0/+9
* more work on ZSETs and a new make target called 32bit to build i386 binaries ...antirez2009-10-231-0/+80
* initial skiplist implementation. Most memory checks removed and zmalloc() mod...antirez2009-10-231-44/+114
* Fixed compilation in mac os x snow leopard when compiling a 32 bit binary.antirez2009-10-231-2/+8
* version incremented to 1.050 to distinguish from 1.001 stable and next stable...antirez2009-10-221-2/+29