summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2010-11-22Update README with new way of handling errorsPieter Noordhuis
2010-11-22Abort on code path that should never be takenPieter Noordhuis
2010-11-22Make error messages consistent in casingPieter Noordhuis
2010-11-22Tests for behavior when connecting failsPieter Noordhuis
2010-11-22Make test for formatting commands using a vector more robustPieter Noordhuis
2010-11-22Fix formatting literal percent charactersPieter Noordhuis
2010-11-22Correctly format commands with empty interpolated valuesPieter Noordhuis
2010-11-22Explicit casts for the libev adapterPieter Noordhuis
2010-11-21add explicit casts for C++ compiles - C++ disallows implicit casts fromRyan Tecco
void*
2010-11-21more extern "C" declarations for C++ compilesRyan Tecco
2010-11-19Don't do a write(2) after QUITPieter Noordhuis
This causes non-deterministic error messages because sometimes the socket will already be closed and sometimes it is yet to be closed.
2010-11-19add extern "C" for C++ compilesRyan Tecco
2010-11-15Explicitly initialize struct fields to NULLPieter Noordhuis
2010-11-15Don't print when testing can continuePieter Noordhuis
2010-11-15Redis >=2.1 replies with OK on QUIT, so make the test conditionalPieter Noordhuis
2010-11-05Include signal.hPieter Noordhuis
2010-11-04Finding \r\n without strstr is a little harderPieter Noordhuis
2010-11-04The buffer length to feed should be a size_tPieter Noordhuis
2010-11-04Make moveToNextTask non-recursivePieter Noordhuis
2010-11-04Use strchr in a loop rather than strstrPieter Noordhuis
2010-11-04Return the reply type when the reply object function set is NULLPieter Noordhuis
2010-11-03More stylePieter Noordhuis
2010-11-03StylePieter Noordhuis
2010-11-03Upgrade notice in READMEPieter Noordhuis
2010-11-03Add version information to hiredis.hPieter Noordhuis
2010-11-03Check replies in throughput testPieter Noordhuis
2010-11-03Allow to connect using a unix socket from hiredisPieter Noordhuis
2010-11-03Add functiont to net.c to connect to a unix socketPieter Noordhuis
2010-11-03Move code in net.c to separate functionsPieter Noordhuis
2010-11-03README stylePieter Noordhuis
2010-11-03Expose redisGetReplyFromReader as public APIPieter Noordhuis
2010-11-02Update examplesPieter Noordhuis
2010-11-02Make setError receive an sdsPieter Noordhuis
2010-11-02Strip net.c down to the bare minimumPieter Noordhuis
2010-11-02Move anet.{c,h} to net.{c,h}Pieter Noordhuis
2010-11-02Change error reporting to have an explicit typePieter Noordhuis
When there is an I/O error, errno should be used to find out what is wrong. In other cases, errno cannot be used. So, use an explicit type in Hiredis to define the different error scenarios that can occur.
2010-11-02Remove superfluous definitionPieter Noordhuis
2010-11-01Build universal binaries on OSX by defaultPieter Noordhuis
2010-11-01There is no longer need for a separate redisDisconnectPieter Noordhuis
2010-11-01Use existing function to append to the output bufferPieter Noordhuis
2010-11-01Strip non-blocking callbacks from hiredis.cPieter Noordhuis
2010-11-01Update .gitignorePieter Noordhuis
2010-11-01Reply parsing docs need to be donePieter Noordhuis
2010-11-01Add docs for the asynchronous APIPieter Noordhuis
2010-11-01Change prototype of async reply callbackPieter Noordhuis
2010-11-01Add comment on return value of redisGetReplyPieter Noordhuis
2010-11-01Add sections on redisCommandArgv and pipelining to READMEPieter Noordhuis
2010-11-01Update READMEPieter Noordhuis
2010-11-01Return from getCallback if there is no replyPieter Noordhuis
2010-11-01Add install target in MakefilePieter Noordhuis