summaryrefslogtreecommitdiff
path: root/redis.c
Commit message (Expand)AuthorAgeFilesLines
* SMOVE command implementedantirez2009-04-281-0/+37
* less CPU usage in command parsing, case insensitive config directivesantirez2009-04-281-22/+21
* GETSET implementedantirez2009-04-281-0/+14
* ability to specify a different file name for the DBantirez2009-04-271-0/+2
* log file parsing code improved a bitantirez2009-04-271-12/+9
* bgsave_in_progress field in INFO outputantirez2009-04-271-0/+2
* INCRBY/DECRBY now support 64bit increments, with testsantirez2009-04-271-3/+3
* FLUSHALL/FLUSHDB no longer sync on disk. Just increment the dirty counter by ...antirez2009-04-221-5/+7
* Non blocking replication (finally!). C-side linked lists API improved.antirez2009-04-201-93/+132
* SUNION, SUNIONSTORE, Initial work on non blocking replicationantirez2009-04-191-13/+206
* Redis 0.091 releasedantirez2009-04-101-1/+1
* SINTER/SINTERSTORE/SLEMENTS fix: misisng keys are now not errors, but just li...antirez2009-04-101-1/+6
* Rearrange redisObject struct to reduce memory usage in 64bit environments (as...Bob Potter2009-04-071-1/+1
* 64bit fixes for usedmemoryBob Potter2009-04-071-3/+3
* RANDOMKEY issue 26 fixed, generic test + regression addedantirez2009-04-081-1/+2
* Don't accept SAVE if BGSAVE is in progressantirez2009-04-061-0/+4
* persistent EXPIREantirez2009-04-031-6/+58
* dirty increment was missing in two points. TODO updatedantirez2009-04-031-0/+5
* compression/decompression of large values on disk now workingantirez2009-04-021-5/+25
* disable LZF compression since it's not able to load the DB for now, the load ...antirez2009-04-021-1/+1
* Fixed issue 23 about AUTHantirez2009-04-021-1/+1
* Issue 22 fixedantirez2009-04-021-2/+45
* non-lazy expired keys purging implementedantirez2009-04-011-3/+51
* Initial implementation of EXPIREantirez2009-04-011-193/+247
* Integer encoding implemented in dump file. Doc updatedantirez2009-03-281-8/+105
* feature macros defined to play well with C99antirez2009-03-271-1/+3
* IMPORTANT FIX: new dump format implementation was broken. Now it's ok but tes...antirez2009-03-271-4/+7
* ANSI-C compatibility changesantirez2009-03-271-13/+24
* AUTH merged from Brian Hammond fork, reworked a bit to fix minor problemsantirez2009-03-261-4/+7
* Adds AUTH command.Brian Hammond2009-03-251-0/+22
* Nasty bug of the new DB format fixed, objects sharing implementedantirez2009-03-251-31/+88
* New file dump format, perl client library addedantirez2009-03-251-96/+150
* New protocol fix for LREMantirez2009-03-251-5/+10
* protocol fix in SORT reply with null elementsantirez2009-03-241-1/+1
* Server replies now in the new format, test-redis.tcl and redis-cli modified a...antirez2009-03-241-99/+94
* random tested mode for test-redis.tcl, minor other stuff, version switched to...antirez2009-03-241-1/+1
* Now MONITOR/SYNC cannot be issued multiple timesantirez2009-03-231-0/+6
* MONITOR command implemented.antirez2009-03-231-9/+23
* Merge git://github.com/lucsky/redisantirez2009-03-231-2/+9
|\
| * Display the port on server startup.Luc Heinrich2009-03-231-1/+1
| * Allow to specify the pid file from the config file.Luc Heinrich2009-03-231-1/+8
* | another missing free->zfree replacement fixed. Thanks to Ludoantirez2009-03-231-1/+1
|/
* INFO fixed, MGET implemented, redis-cli implements INFO/MGETantirez2009-03-221-0/+26
* first commitantirez2009-03-221-0/+3037