summaryrefslogtreecommitdiff
path: root/src/cluster.c
Commit message (Expand)AuthorAgeFilesLines
* Fixed another possible bug in cluster.c found by clang --analyze.antirez2012-01-251-1/+1
* Fixed a non critical bug signaled by clang static analyzer thanks to Mukund S...antirez2012-01-251-1/+1
* dict.c API names modified to be more coincise and consistent.antirez2011-11-081-7/+7
* Fixed a few warnings compiling on Linux.antirez2011-10-231-1/+1
* use signalModifiedKey to set the key as dirty in the context of WATCH for bot...antirez2011-10-201-0/+2
* First implementation of the ASKING command. Semantics still to verify.antirez2011-10-171-2/+18
* MIGRATE +NOKEY error was missing the final CRLF causing a protocol error.antirez2011-10-171-1/+1
* Fixed a typo causing segfault on MIGRATEantirez2011-10-171-1/+1
* small comment addedantirez2011-10-131-1/+4
* Redis Cluster: process node to node CLUSTERMSG_TYPE_PUBLISH messages and send...antirez2011-10-071-0/+27
* propagate PUBLISH messages using the redis cluster nodes bus. Still need to p...antirez2011-10-071-12/+67
* A node can populate a slot if a message from a trusted slot is received claim...antirez2011-10-051-1/+1
* just minor aesthetic changes to cluster.cantirez2011-10-051-2/+3
* replaced redisAssert() with redisAssertWithInfo() in a shitload of places.antirez2011-10-041-15/+15
* Rewrite MIGRATE as DEL for AOF/replication. Also increment the dirty counter ...antirez2011-10-031-0/+8
* increment server.dirty in restore command to make sure it is replicated and i...antirez2011-10-031-0/+1
* when processing gossip packets make sure to also update the node bitmap when ...antirez2011-10-011-1/+1
* Fixed two bugs in the CLUSTER SETSLOT ... NODE subcommandantirez2011-09-301-2/+2
* Clear the importing status from the slot if a CLUSTER SETSLOT command permane...antirez2011-09-301-0/+5
* added comment about SETSLOT NODE form.antirez2011-09-291-2/+3
* show node with myself flag always as connected in CLUSTER NODES output.antirez2011-09-281-1/+2
* rioInitWithFile nad rioInitWithBuffer functions now take a rio structure poin...antirez2011-09-221-4/+4
* merge conflicts resolvedantirez2011-09-221-158/+48
|\
| * Make RDB types/opcodes explicit; load/save object typePieter Noordhuis2011-05-131-48/+14
| * Abstract file/buffer I/O to support in-memory serializationPieter Noordhuis2011-05-131-136/+60
* | DB API refactoring. The changes were designed together with Pieter Noordhuis.antirez2011-06-201-1/+1
|/
* clear importing/exporing state when appropriate on SETSLOT or ADDSLOTS cluste...antirez2011-05-061-3/+16
* CLUSTER SETSLOT command and some refactoring of the cluster commandantirez2011-05-061-17/+44
* CLUSTER DELSLOTSantirez2011-05-061-4/+24
* Fixed semantics of CLUSTER SETSLOT, SELECT now only denied in cluster mode if...antirez2011-05-051-4/+9
* CLUSTER SETSLOT STABLE fixedantirez2011-05-051-0/+1
* missing return caused protocol desync in CLUSTER SETSLOTantirez2011-05-051-0/+1
* Fixed problem in cluster redirection due to a stupid typoantirez2011-05-051-1/+1
* cluster import/export of hash slots implemented in the query redirection engineantirez2011-05-051-19/+54
* if /dev/urandom is not available use rand() to get a random node nameantirez2011-05-041-5/+3
* CLUSTER SETSLOT implementedantirez2011-05-041-3/+27
* render migrating and importing slots in cluster nodes infoantirez2011-05-021-0/+16
* CLUSTER subcommands to set slots in migrating or importing state. Still a wor...antirez2011-04-291-2/+39
* CLUSTER GETKEYSINSLOT implementedantirez2011-04-291-0/+21
* CLUSTER KEYSLOT commandantirez2011-04-291-0/+4
* take a hashslot -> keys index, will be used for cluster rehasingantirez2011-04-281-0/+1
* no longer useful debugging printf removedantirez2011-04-131-1/+0
* Merge branch 'unstable' of github.com:antirez/redis into unstableantirez2011-04-121-1/+3
|\
| * added known nodes info in CLUSTER INFOSalvatore Sanfilippo2011-04-111-1/+3
* | update state when FAIL is cleared from a nodeantirez2011-04-081-0/+1
|/
* do not process node failure messages about yourselfantirez2011-04-081-1/+2
* fixed lame error in slot assignmentantirez2011-04-071-1/+1
* evaluate cluster state after config load. Still bugs in the slot allocation a...antirez2011-04-071-0/+1
* master node without slaves rejoin fixedantirez2011-04-071-3/+3
* when loading config set the ping/pong timestaps to the current value. Even a ...antirez2011-04-071-4/+19