- 03 Jan, 2013 1 commit
-
-
antirez authored
In this way the caller is able to perform better error checking or to use strerror() without the risk of meaningless error messages being displayed.
-
- 05 Oct, 2012 1 commit
-
-
antirez authored
-
- 04 Oct, 2012 1 commit
-
-
Jokea authored
When system time changes back, the timer will not worker properly hence some core functionality of redis will stop working(e.g. replication, bgsave, etc). See issue #633 for details. The patch saves the previous time and when a system clock skew is detected, it will force expire all timers. Modiifed by @antirez: the previous time was moved into the eventLoop structure to make sure the library is still thread safe as long as you use different event loops into different threads (otherwise you need some synchronization). More comments added about the reasoning at the base of the patch, that's worth reporting here: /* If the system clock is moved to the future, and then set back to the * right value, time events may be delayed in a random way. Often this * means that scheduled operations will not be performed soon enough. * * Here we try to detect system clock skews, and force all the time * events to be processed ASAP when this happens: the idea is that * processing events earlier is less dangerous than delaying them * indefinitely, and practice suggests it is. */
-
- 23 May, 2012 1 commit
-
-
jokea authored
-
- 15 May, 2012 1 commit
-
-
Dave Pacheco authored
-
- 06 Apr, 2012 1 commit
-
-
jokea authored
-
- 08 Feb, 2012 1 commit
-
-
antirez authored
-
- 25 Jan, 2012 2 commits
-
-
antirez authored
patch by Mukund Sivaraman, modified by me to make it simpler and to use my coding style).
-
Mukund Sivaraman authored
-
- 16 Dec, 2011 1 commit
-
-
antirez authored
loop is never destroyed in Redis). Thanks to @anydot for noticing it.
-
- 15 Dec, 2011 1 commit
-
-
antirez authored
-
- 21 Nov, 2011 1 commit
-
-
antirez authored
-
- 01 Jul, 2010 1 commit
-
-
antirez authored
networking related stuff moved into networking.c moved more code more work on layout of source code SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;) cleanly compiling again after the first split, now splitting it in more C files moving more things around... work in progress split replication code splitting more Sets split Hash split replication split even more splitting more splitting minor change
-
- 19 Feb, 2010 1 commit
-
-
antirez authored
A problem with replication with multiple slaves connectiong to a single master fixed. It was due to a typo, and reported on github by the user micmac. Also the copyright year fixed from many files.
-
- 28 Jan, 2010 1 commit
-
-
antirez authored
-
- 20 Jan, 2010 1 commit
-
-
antirez authored
ae.c event loop does no longer support exception notifications, as they are fully pointless. Also a theoretical bug that never happens in practice fixed.
-
- 28 Nov, 2009 2 commits
-
-
antirez authored
ifdefs added to use kevent on Free Open and Net BSD as well. INFO and ae.c modified in order to report the multiplexing API in use
-
Harish Mallipeddi authored
-
- 23 Nov, 2009 2 commits
- 22 Mar, 2009 1 commit
-
-
antirez authored
-