summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* version bumped to 2.1.52.2-alpha3antirez2010-10-211-1/+1
* prevent small integer sharing when maxmemory is active. So every object will ...antirez2010-10-151-2/+6
* CONFIG RESETSTAT no longer resets the server uptime. Now keyspace hits/misses...antirez2010-10-151-1/+2
* minor aesthetic changeantirez2010-10-151-1/+1
* added keyspace_hits and keyspace_misses fields in INFO outputantirez2010-10-153-5/+15
* maxmemory-samples implemented in CONFIG command and configuration fileantirez2010-10-152-7/+20
* Don't increment dirty on expireIfNeeded() as natural expires are not consider...antirez2010-10-151-1/+0
* Merge remote branch 'pietern/ziplist-regression'antirez2010-10-141-41/+100
|\
| * Replace ziplist stresser and fix regressionPieter Noordhuis2010-10-141-41/+100
* | implemented different algorithms for maxmemoryantirez2010-10-145-7/+175
* | Object approximated LRU algorithm enhanced / fixed / refactored. This is used...antirez2010-10-146-23/+41
|/
* free memory if the maxmemory parameter is reduced via CONFIG SETantirez2010-10-111-0/+1
* maxmemory fixed, we now try to release memory just before we check for the me...antirez2010-10-111-4/+6
* fixed an alignment problem with time_t is 32 bit, long is 64 bit, and arch is...antirez2010-10-071-1/+1
* minor typo fixed, reported by Thomas Bassettoantirez2010-10-071-1/+1
* intset stress testing added, ziplist stress testing relocated in a more appro...antirez2010-09-242-51/+96
* explicit regression test for a ziplist bug addedantirez2010-09-241-0/+9
* ziplist implementation fuzzy testsantirez2010-09-241-0/+53
* Merge remote branch 'pietern/ziplist-fix'antirez2010-09-241-1/+20
|\
| * Add regression test and fix for >255 byte string entriesPieter Noordhuis2010-09-231-1/+20
* | Contributing file addedantirez2010-09-231-0/+13
* | more tests for sds.cantirez2010-09-231-8/+79
* | minimal C test framework + a first example sds.c testsantirez2010-09-232-4/+80
|/
* Update rdb.c to properly work with new memory strategy for sorted setsPieter Noordhuis2010-09-221-4/+5
* two leaks fixedantirez2010-09-221-14/+13
* error generation format reverted to the new style after mergeantirez2010-09-221-2/+1
* Merge remote branch 'pietern/zset-mem'antirez2010-09-223-142/+124
|\
| * Reference zset score in zskiplistNode from dict entriesPieter Noordhuis2010-08-033-59/+60
| * Use flexible array in zskiplistNode to reduce memory usagePieter Noordhuis2010-08-032-83/+64
* | preventive conflict resolution to merge pietern/zset-memantirez2010-09-221-1/+2
* | Merge remote branch 'pietern/ziplist-eff'antirez2010-09-221-96/+356
|\ \
| * | Allow a random seed argument for the ziplist test binaryPieter Noordhuis2010-09-071-0/+4
| * | Fix updating the prevlen field of consecutive entriesPieter Noordhuis2010-09-071-13/+208
| * | Make ziplist schema more efficient for strings with length > 15Pieter Noordhuis2010-08-131-83/+144
* | | new parsing code bugfixingantirez2010-09-171-0/+5
* | | try to parse the request in a smarter way to gain speed... work in progressantirez2010-09-172-2/+12
* | | Added used CPU statistics in INFO output, obtained via getrusage()antirez2010-09-161-0/+13
* | | modified a bit addReply() to play better with copy on write now that we have ...antirez2010-09-161-12/+23
* | | Merge remote branch 'pietern/networking-perf'antirez2010-09-162-8/+3
|\ \ \
| * | | Static buffer in client struct has a constant sizePieter Noordhuis2010-09-162-8/+3
* | | | Merge remote branch 'pietern/networking-perf'antirez2010-09-1619-344/+540
|\ \ \ \ | |/ / /
| * | | Merge branch 'master' into networking-perfPieter Noordhuis2010-09-0317-49/+352
| |\ \ \
| * | | | Fix bug in gluing a deferred multi bulk length to the next reply chunkPieter Noordhuis2010-09-021-2/+2
| * | | | Use specialized function to add status and error repliesPieter Noordhuis2010-09-0213-83/+122
| * | | | Add sds function that can be called with va_listPieter Noordhuis2010-09-022-6/+15
| * | | | Changed reply buildup internalsPieter Noordhuis2010-09-023-62/+97
| * | | | Removed unneeded functionPieter Noordhuis2010-09-022-5/+0
| * | | | Use existing reply functions where possiblePieter Noordhuis2010-09-027-12/+10
| * | | | Free the sds in addReplySds when it cannot be added to the replyPieter Noordhuis2010-09-021-1/+5
| * | | | Intialize bufpos in the fake clientPieter Noordhuis2010-09-021-0/+1