- 07 Nov, 2012 2 commits
-
-
antirez authored
With COPY now MIGRATE does not remove the key from the source instance. With REPLACE it uses RESTORE REPLACE on the target host so that even if the key already eixsts in the target instance it will be overwritten. The options can be used together.
-
antirez authored
The REPLACE option deletes an existing key with the same name (if any) and materializes the new one. The default behavior without RESTORE is to return an error if a key already exists.
-
- 24 Aug, 2012 1 commit
-
-
antirez authored
The previous implementation of zmalloc.c was not able to handle out of memory in an application-specific way. It just logged an error on standard error, and aborted. The result was that in the case of an actual out of memory in Redis where malloc returned NULL (In Linux this actually happens under specific overcommit policy settings and/or with no or little swap configured) the error was not properly logged in the Redis log. This commit fixes this problem, fixing issue #509. Now the out of memory is properly reported in the Redis log and a stack trace is generated. The approach used is to provide a configurable out of memory handler to zmalloc (otherwise the default one logging the event on the standard output is used).
-
- 24 Apr, 2012 2 commits
- 10 Apr, 2012 1 commit
-
-
antirez authored
-
- 09 Apr, 2012 1 commit
-
-
antirez authored
-
- 03 Apr, 2012 2 commits
- 02 Apr, 2012 5 commits
- 01 Apr, 2012 1 commit
-
-
antirez authored
-
- 08 Mar, 2012 1 commit
-
-
antirez authored
clusterGetRandomName() generalized into getRandomHexChars() so that we can use it for the run_id field as well.
-
- 25 Jan, 2012 3 commits
- 08 Nov, 2011 1 commit
-
-
antirez authored
-
- 23 Oct, 2011 1 commit
-
-
antirez authored
-
- 20 Oct, 2011 1 commit
-
-
antirez authored
-
- 17 Oct, 2011 3 commits
- 13 Oct, 2011 1 commit
-
-
antirez authored
-
- 07 Oct, 2011 2 commits
- 05 Oct, 2011 2 commits
-
-
antirez authored
A node can populate a slot if a message from a trusted slot is received claiming ownership of this slot, that is currently empty or served by a node in FAIL state. However this feature was broken since calling clusterAddSlot() was not enough as the slot bit is already set in the node that pong us. We need to directly alter the table. This commit fixes the issue.
-
antirez authored
-
- 04 Oct, 2011 1 commit
-
-
antirez authored
-
- 03 Oct, 2011 2 commits
- 01 Oct, 2011 1 commit
-
-
antirez authored
when processing gossip packets make sure to also update the node bitmap when associating slots to nodes. Fixed simply using the appropriate helper function to add a slot.
-
- 30 Sep, 2011 2 commits
- 29 Sep, 2011 1 commit
-
-
antirez authored
-
- 28 Sep, 2011 1 commit
-
-
antirez authored
-
- 22 Sep, 2011 1 commit
-
-
antirez authored
rioInitWithFile nad rioInitWithBuffer functions now take a rio structure pointer to avoid copying a structure to return value to the caller.
-
- 20 Jun, 2011 1 commit
-
-
antirez authored
-