- 13 Apr, 2012 2 commits
- 29 Mar, 2012 3 commits
- 28 Mar, 2012 3 commits
-
-
Nathan Fritz authored
(The original implementation was modified by @antirez to conform Redis coding standards.)
-
antirez authored
-
antirez authored
-
- 27 Mar, 2012 10 commits
-
-
Premysl Hruby authored
-
Premysl Hruby authored
-
Premysl Hruby authored
-
Premysl Hruby authored
-
antirez authored
-
antirez authored
Produce the watchlog warning log in a way that is safer from a signal handler. Fix a memory leak in the backtrace generation function.
-
antirez authored
This is required to ensure that the signal will be delivered to the main thread when the watchdog timer expires.
-
antirez authored
-
antirez authored
-
antirez authored
SIGSEGV handler refactored so that we can reuse stack trace and current client logging functionalities in other contexts.
-
- 25 Mar, 2012 2 commits
-
-
antirez authored
-
antirez authored
This new field counts all the times Redis is configured with AOF enabled and fsync policy 'everysec', but the previous fsync performed by the background thread was not able to complete within two seconds, forcing Redis to perform a write against the AOF file while the fsync is still in progress (likely a blocking operation).
-
- 24 Mar, 2012 1 commit
-
-
antirez authored
-
- 23 Mar, 2012 3 commits
- 22 Mar, 2012 2 commits
- 21 Mar, 2012 1 commit
-
-
antirez authored
-
- 20 Mar, 2012 2 commits
-
-
antirez authored
DEBUG should not be flagged as w otherwise we can not call DEBUG DIGEST and other commands against read only slaves.
-
antirez authored
This commit introduces support for read only slaves via redis.conf and CONFIG GET/SET commands. Also various semantical fixes are implemented here: 1) MULTI/EXEC with only read commands now work where the server is into a state where writes (or commands increasing memory usage) are not allowed. Before this patch everything inside a transaction would fail in this conditions. 2) Scripts just calling read-only commands will work against read only slaves, when the server is out of memory, or when persistence is into an error condition. Before the patch EVAL always failed in this condition.
-
- 19 Mar, 2012 3 commits
- 18 Mar, 2012 4 commits
-
-
antirez authored
More memory tests implemented. Default number of iterations lowered to a more acceptable value of 50.
-
antirez authored
-
antirez authored
Number of iteration of --test-memory is now 300 (several minutes per gigabyte). Memtest86 and Memtester links are also displayed while running the test.
-
antirez authored
-
- 16 Mar, 2012 3 commits
- 15 Mar, 2012 1 commit
-
-
antirez authored
Use a simple protocol between clientsCron() and helper functions to understand if the client is still valind and clientsCron() should continue processing or if the client was freed and we should continue with the next one.
-