Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
|
|
This provides a target to build a DSO, as well as the ability to install
it.
|
|
Fix Invalid argument after redisAsyncConnectUnix
|
|
|
|
Makefile: use predefined AR
|
|
|
|
To minimize code changes, a simple `u` (or UNIX, Unix, unix, etc -- as
long as the first character is u or U) is used as a marker for the
'port' argument. In this case, the hostname is interpreted to be the
path to the unix socket.
|
|
This allows to override it for cross compilation.
|
|
Fix errors not propagating properly with libuv.h.
|
|
FreeBSD build fix
|
|
|
|
|
|
Fix redisBufferRead documentation
|
|
Referred to redisContextReadReply which I cannot find in this codebase
nor the old redis-tools one. Presumably this meant to say
redisGetReplyFromReader which is how redisBufferRead is used in this
file. Could've also meant the interface function redisReaderGetReply.
|
|
Proper error reporting for connect failures
|
|
fix common realloc mistake and add null check more
|
|
Add CPPFLAGS to REAL_CFLAGS
|
|
|
|
|
|
Some ISPs like to inject their own "Suggestions" page whenever you hit
NXDOMAIN. This confuses Redis as well as addrinfo (black-holing the
route).
|
|
|
|
Not sizeof saddr.
|
|
This retrieves the actual error which occurred, as getsockopt is not
always reliable in this regard.
|
|
Prepare for the 0.14.0 release
|
|
SONAME bumped to 0.14 because we've broken ABI compatibility with 0.13.x
|
|
Make string2ll static to avoid conflict with redis
|
|
See discussion on #609. This should also make it easier for redis to
update the vendored/bundled hiredis (though not by much).
|
|
-dynamiclib is the correct documented flag to use to create dynamic
libraries on macOS. Newer toolchains recognize -shared as a synonym
of -dynamiclib but older toolchains don't.
|
|
This should have been included in
93421f9d84868989ab0e401fb3be7b31c7a9c181 but was missed.
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
|
|
|
|
This commit pulls string2ll from Redis (with permission from Antirez)
as strtoll is 2-3x slower and even worse vs the original version in
hiredis that didn't check for overflow at all.
By using string2ll there is almost no measurable performance impact
of overflow detection even in integer parsing heavy workloads (e.g.
INCRBY commands).
|
|
processMultiBulkItem truncates the value read from readLongLong,
resulting in a corrupted state when the next item is read.
createArray takes an int, so bound to INT_MAX.
Inspection showed that processBulkItem had the same truncation issue.
createString takes size_t, so bound to SIZE_MAX. This only has an
effect on 32-bit platforms.
A strict lower bound is also added, since negative lengths other
than -1 are invalid according to RESP.
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
Badly formatted or out-of-range integers are now protocol errors.
Signed-off-by: Justin Brewer <jzb0012@auburn.edu>
|
|
|
|
|
|
|
|
Use cp -pPR instead of cp -a
|
|
This should be equivalent but compatible with older versions of cp.
|