summaryrefslogtreecommitdiff
path: root/redis.c
Commit message (Expand)AuthorAgeFilesLines
* maxmemory implementedantirez2009-05-271-20/+89
* Redis git version modified to 0.101 in order to distinguish that from the lat...antirez2009-05-261-1/+1
* client libraries synched in gitantirez2009-05-261-1/+1
* ignore gcc warning about write() return code not checked. It is esplicitily t...antirez2009-05-261-1/+1
* max bytes of a received command enlarged from 1k to 16kantirez2009-05-261-1/+1
* maxclients implemented, see redis.conf for detailsantirez2009-05-251-1/+18
* INFO command now reports replication infoantirez2009-05-251-4/+19
* Warns if using the default configantirez2009-05-241-0/+2
* SLAVEOF command implemented for replication remote controlantirez2009-05-231-1/+25
* Fix: no connection timeout for the master!antirez2009-05-221-0/+1
* replication slave timeout when receiving the initial bulk data set to 3600 se...antirez2009-05-221-1/+1
* critical bug about glueoutputbuffers=yes fixed. Under load and with pipelinin...antirez2009-05-221-1/+2
* TTL command implementedantirez2009-05-221-0/+14
* S*STORE now return the cardinality of the resulting setantirez2009-05-221-2/+4
* command postprocessing implemented into RubyRedisantirez2009-05-211-2/+1
* Merge git://github.com/tmm1/redisantirez2009-05-201-19/+19
|\
| * Allow timeout=0 config to disable client timeoutsAman Gupta2009-05-191-2/+2
| * Fix SINTER/UNIONSTORE to allow for &=/|= style operations (i.e. SINTERSTORE s...Aman Gupta2009-05-171-17/+14
| * Optimize SDIFF to return as soon as the result set is emptyAman Gupta2009-05-171-0/+3
* | Partial qsort implemented in SORT command, only when both BY and LIMIT is use...antirez2009-05-191-2/+6
|/
* SDIFF/SDIFFSTORE implemnted unifying it with the implementation of SUNION/SUN...antirez2009-05-171-18/+46
* timestamp in log linesantirez2009-05-111-1/+6
* DEL is now a vararg, IMPORTANT: memory leak fixed in loading DB codeantirez2009-05-091-5/+19
* Infinite number of arguments for MGET and all the other commandsantirez2009-05-061-5/+22
* Warns if /proc/sys/vm/overcommit_memory is set to 0 on Linux. Also make sure ...antirez2009-05-041-8/+54
* fixed for HT resize check 32bits overflowantirez2009-04-291-2/+2
* Check for fork() failure in background savingantirez2009-04-291-0/+5
* fix for the LZF off-by-one bug addedantirez2009-04-291-2/+2
* print bytes used at exit on SHUTDOWNantirez2009-04-281-1/+2
* 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