summaryrefslogtreecommitdiff
path: root/src/db.c
Commit message (Expand)AuthorAgeFilesLines
...
* fixed a bug in RENAME getKeys() functionantirez2011-03-281-1/+1
* bug fixed in zunionstore specific getKeys() implementationantirez2011-03-281-1/+1
* Fixes to the new preloading / key discovery APIsantirez2011-03-281-1/+2
* new preloading implemented, still EXEC not handled correctly, everything to testantirez2011-03-231-0/+72
* TTL command fixed to work reliably with diskstoreantirez2011-03-041-0/+1
* master-slave replication fixed, it was not listing any key using KEYS command...antirez2011-01-141-2/+2
* test adapted to run with diskstore, and a few bugs fixedantirez2011-01-091-1/+3
* source reshaped a bit to play well with a bgsaving thread, still work to do, ...antirez2011-01-071-24/+0
* fixed logging level for debugging messageantirez2011-01-031-2/+2
* diskstore more fixesantirez2011-01-031-13/+50
* diskstore bug fixing and negative cache proper implementationantirez2011-01-031-9/+10
* FLUSHALL / FLUSHDB for diskstore implementedantirez2011-01-031-3/+5
* fixed a bug in diskstoreantirez2011-01-021-4/+2
* blocking load fixed with the new designantirez2011-01-011-5/+11
* implemented a different approach to IO scheduling, so object->storage is no l...antirez2011-01-011-9/+10
* minor changes to doc and commentsantirez2010-12-311-1/+1
* negative caching implementedantirez2010-12-311-6/+7
* major bug and a dead lock fixedantirez2010-12-311-1/+4
* blocking load of keys on lookup -- nor tested, nor finishedantirez2010-12-311-4/+20
* short but important comment addedantirez2010-12-301-1/+3
* handled DEL command as a special optimized case for disk storeantirez2010-12-301-0/+12
* diskstore cache bug fixingantirez2010-12-301-0/+1
* more work done for diskstore without trying to compile, more work needed to b...antirez2010-12-301-0/+3
* touched key for WATCH refactored into a more general thing that can be used a...antirez2010-12-291-7/+28
* a lot of code reworked/removed to implement object cachingantirez2010-12-281-20/+12
* command lookup process turned into a much more flexible and probably faster h...antirez2010-11-031-3/+1
* Do not update the LRU info on key lookup when we have a saving child. With th...antirez2010-11-021-2/+5
* added keyspace_hits and keyspace_misses fields in INFO outputantirez2010-10-151-0/+2
* Don't increment dirty on expireIfNeeded() as natural expires are not consider...antirez2010-10-151-1/+0
* Object approximated LRU algorithm enhanced / fixed / refactored. This is used...antirez2010-10-141-2/+3
* fixed an alignment problem with time_t is 32 bit, long is 64 bit, and arch is...antirez2010-10-071-1/+1
* Merge remote branch 'pietern/networking-perf'antirez2010-09-161-23/+17
|\
| * Merge branch 'master' into networking-perfPieter Noordhuis2010-09-031-3/+3
| |\
| * | Use specialized function to add status and error repliesPieter Noordhuis2010-09-021-15/+13
| * | Use existing reply functions where possiblePieter Noordhuis2010-09-021-4/+2
| * | Wrapper for adding unknown multi bulk length to reply listPieter Noordhuis2010-08-301-4/+2
* | | Fix re-enabled again, I forgot to check if VM was enabled before calling hand...antirez2010-09-081-1/+1
* | | latest fix reverted, there is some problem reported by the CI testantirez2010-09-081-1/+1
* | | Fixed a race condition in VM happening when a key was deleted while there was...antirez2010-09-081-0/+5
| |/ |/|
* | Fixed MONITOR mode and Issue 296antirez2010-08-301-3/+3
|/
* Fixed overflow detection in argument to long convertion function in general, ...antirez2010-08-231-4/+3
* PERSIST: a fix and some basic testantirez2010-08-031-2/+4
* PERSIST command implementedantirez2010-08-031-5/+15
* allow to set a new EXPIRE of an existing volatile keyantirez2010-08-031-14/+8
* memory leak removed from expire propagation codeantirez2010-08-021-1/+2
* support for write operations against expiring keys, by master-controlled expi...antirez2010-08-021-12/+39
* WATCH is now affected only when write commands actually modify the key contentantirez2010-07-121-3/+1
* WATCH will now consider touched keys target of EXPIRE command after the WATCH...antirez2010-07-051-0/+2
* redis.c split into many different C files.antirez2010-07-011-0/+508