summaryrefslogtreecommitdiff
path: root/redis.c
Commit message (Expand)AuthorAgeFilesLines
* Redis version is now 1.3.8v1.3.8antirez2010-03-291-1/+1
* Merge branch 'hincrby' of git://github.com/pietern/redisantirez2010-03-261-0/+76
|\
| * removed unnecessary refcount increase that caused the HINCRBY memleakPieter Noordhuis2010-03-261-2/+0
| * implements HINCRBY and tests (todo: find and fix small memleak)Pieter Noordhuis2010-03-261-0/+78
* | Removed a useless if spotted by Pieter Noordhuisantirez2010-03-261-2/+1
* | Fixed a critical replication bug: binary values issued with the multi bulk pr...antirez2010-03-261-21/+23
|/
* Fixed the reply about denied write commands under maxmemory reached conditio...antirez2010-03-241-4/+9
* CONFIG command implemened -- just a start but already usefulantirez2010-03-241-4/+115
* with --help states that you can use - as config file name to feed config via ...antirez2010-03-231-0/+1
* New INFO field: expired_keysantirez2010-03-231-0/+7
* the Cron timer function is now called 10 times per second instead of 1 time p...antirez2010-03-231-8/+8
* key deletion on empty value fix + some refactoringantirez2010-03-231-16/+9
* Empty value trigger key removal in all the operationsantirez2010-03-231-10/+38
* Merged gnrfan patches fixing issues 191, 193, 194antirez2010-03-221-6/+12
|\
| * Solves issue #194 on Google Code: --help parameter to redis-srver prints the ...Antonio Ognio2010-03-191-4/+16
* | Merge branch 'issue_193' of git://github.com/gnrfan/redisantirez2010-03-221-1/+4
|\ \
| * | Fixing issue 193Antonio Ognio2010-03-191-1/+4
| |/
* | Merge branch 'issue_191' of git://github.com/gnrfan/redisantirez2010-03-221-0/+10
|\ \
| * | Solving issue #191 on Google Code: -v and --version should print the version ...Antonio Ognio2010-03-191-0/+10
| |/
* | Redis master version is now 1.3.7v1.3.7antirez2010-03-221-1/+1
* | support for include directive in config parserJeremy Zawodny2010-03-191-0/+2
* | Removed a stupid overriding of config values due to a wrong cut&pasteantirez2010-03-191-3/+0
* | VM hash type swappability implemented. Handling of failed pthread_create() call.antirez2010-03-191-1/+38
|/
* increment server.dirty on HDELantirez2010-03-181-0/+1
* Redis 1.3.61.3.6antirez2010-03-181-1/+1
* Optimization fixed and re-activatedantirez2010-03-181-3/+1
* reverted an optimization that makes Redis not stableantirez2010-03-181-0/+2
* HDEL fix, an optimization for comparison of objects in hash table lookups whe...antirez2010-03-171-2/+9
* Version is now 1.3.5antirez2010-03-171-1/+1
* Merged Pietern patch for VM key args helper function. Fixed an obvious bug in...antirez2010-03-171-101/+120
|\
| * added preloading keys from VM when using ZINTER or ZUNIONPieter Noordhuis2010-03-161-100/+119
* | Merge branch 'aggregates' of git://github.com/pietern/redisantirez2010-03-171-22/+52
|\ \
| * | added explicit AGGREGATE [SUM|MIN|MAX] option to ZUNION/ZINTERPieter Noordhuis2010-03-161-22/+52
| |/
* | HEXISTS and tests implementedantirez2010-03-171-0/+22
* | Fixed a bug in HSET, a memory leak, and a theoretical bug in dict.cantirez2010-03-171-1/+1
|/
* HGET fix for integer encoded field against zipmap encoded hashantirez2010-03-161-1/+5
* HKEYS / HVALS / HGETALLantirez2010-03-161-6/+80
* Solved a memory leak with Hashesantirez2010-03-161-2/+0
* pretty big refactoringantirez2010-03-151-629/+451
* An interesting refactoring + more expressive internal APIantirez2010-03-151-1/+43
* Fixed the same problem in ZREVRANKantirez2010-03-151-1/+1
* Fixed a ZRANK bugantirez2010-03-151-1/+1
* zipmap to hash conversion in HSETantirez2010-03-151-0/+23
* max zipmap entries and max zipmap value parameters added into INFO outputantirez2010-03-141-0/+7
* HDEL and some improvement in DEBUG OBJECT commandantirez2010-03-141-2/+42
* Append only file support for hashesantirez2010-03-141-10/+54
* A minor fix and a few debug messages removedantirez2010-03-121-6/+2
* Applied the replication bug patch provided by Jeremy Zawodny, removing temp f...antirez2010-03-121-3/+7
* Fix for HGET against non Hash type, debug messages used to understand a bit b...antirez2010-03-111-0/+11
* fix: use zmalloc instead of mallocPieter Noordhuis2010-03-091-1/+1