- 13 Apr, 2012 6 commits
-
-
antirez authored
-
antirez authored
Lua global protection can now be simpified becuase we no longer have the global() function. It's useless to occupy memory with this table, it is also not faster because the metamethods we use are only called when a global object does not exist or we are trying to create it from a script.
-
antirez authored
After considering the interaction between ability to delcare globals in scripts using the 'global' function, and the complexities related to hanlding replication and AOF in a sane way with globals AND ability to turn protection On and Off, we reconsidered the design. The new design makes clear that there is only one good way to write Redis scripts, that is not using globals. In the rare cases state must be retained across calls a Redis key can be used.
-
antirez authored
-
antirez authored
-
antirez authored
-
- 29 Mar, 2012 3 commits
- 28 Mar, 2012 6 commits
-
-
antirez authored
-
Nathan Fritz authored
(The original implementation was modified by @antirez to conform Redis coding standards.)
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
Redis test: regexp to check if valgrind reported errors modified. Now we no longer look at the total count because this includes "possibly lost" bytes that are not interesting for Redis (tons of false positives because of how sds.c works).
-
- 27 Mar, 2012 12 commits
-
-
Salvatore Sanfilippo authored
fix typo
-
Salvatore Sanfilippo authored
Fixes around time usage
-
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 3 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).
-
antirez authored
Apparently because the sample RDB file was not copied before every test Redis had a chance to replace it with a newly written one, so that the next test could fail.
-
- 24 Mar, 2012 4 commits
- 23 Mar, 2012 5 commits
- 22 Mar, 2012 1 commit
-
-
antirez authored
-