- 09 Nov, 2011 2 commits
-
-
antirez authored
Initial support for key expire times with millisecond resolution. RDB version is now 3, new opcoded added for high resolution times. Redis is still able to correctly load RDB version 2. Tests passing but still a work in progress. API to specify milliseconds expires still missing, but the precision of normal expires is now already improved and working.
-
antirez authored
-
- 08 Nov, 2011 11 commits
-
-
antirez authored
-
antirez authored
entry. Field name of hash entry union modified for clarity.
-
antirez authored
-
antirez authored
dict.c: added macros in dict.h to set signed and unsigned 64 bit values directly inside the hash entry without using additional memory.
-
antirez authored
-
antirez authored
dict.c: added two lower level methods for directly manipulating hash entries. This is useful in order to set 64 bit integers as values directly inside the hash entry (in order to save memory), without casting, and even in 32 bit builds.
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
Multi bulk optimization for creating big objects without copying data is no longer optional, #ifdefs removed. Also debugging messages removed.
-
antirez authored
to 16k, request buffer size is no longer destroyed when emtpy and large (better fix needed). Redis clients static output buffer set to 16k as well.
-
- 07 Nov, 2011 5 commits
-
-
antirez authored
-
antirez authored
speed-regression.tcl: move tests, data size, requests in global vars that will be changed via command line options.
-
antirez authored
speed-regression.tcl script: killing previously tested instance fixed. Don't run if there is already an instance running in the same port.
-
antirez authored
-
antirez authored
-
- 04 Nov, 2011 5 commits
- 03 Nov, 2011 1 commit
-
-
antirez authored
further optimizations for the multi bulk protocol parsing code when big objects are transmitted to Redis.
-
- 02 Nov, 2011 7 commits
-
-
antirez authored
-
antirez authored
sdsIncrLen() / sdsMakeRoomFor() used to avoid copying to intermediate buffer while reading the client query.
-
antirez authored
-
antirez authored
-
antirez authored
sdsMakeRoomFor() exposed as public API. sdsIncrLen() added. Both the changes make it possible to copy stuff from a system call to an sds buffer without the need of an additional buffer and copying overhead.
-
antirez authored
-
antirez authored
-
- 31 Oct, 2011 9 commits
-
-
antirez authored
-
antirez authored
-
antirez authored
-
Salvatore Sanfilippo authored
build: fix sunos build, compile lua with __C99FEATURES__=1
-
antirez authored
-
antirez authored
-
Herbert G. Fischer authored
-
antirez authored
-
antirez authored
maxclients configuration is now implemented dealing with the actual process rlimits. Setting maxclients to 0 no longer makes sense and is now invalid, the new default is 10000. See issue #162 for more information.
-