Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-04-19 | Inline sdslen and sdsavail (thanks to @bitbckt) | Pieter Noordhuis | |
2011-04-07 | Work with make v3.80 | Pieter Noordhuis | |
2011-04-03 | Lazily destroy protocol reader buffer | Pieter Noordhuis | |
2011-04-03 | Individual reply object functions may be NULL | Pieter Noordhuis | |
2011-03-31 | Add pipelined throughput tests | Pieter Noordhuis | |
2011-03-29 | Update fmacros.h | Pieter Noordhuis | |
2011-03-06 | Fix formatCommand to work with all empty interpolations | Pieter Noordhuis | |
2011-02-14 | Typo fix | Elnatan | |
2011-02-04 | Fix copying timeval for timeout | Pieter Noordhuis | |
2011-02-04 | Use select(2) for enforce a timeout on blocking connect(2) | Pieter Noordhuis | |
2011-01-27 | Properly reset state after protocol error in reply reader | Pieter Noordhuis | |
2011-01-27 | redisReplyReaderFeed should take a const char* | Pieter Noordhuis | |
2011-01-27 | Avoid warnings with -Wstrict-prototypes | Pieter Noordhuis | |
2011-01-19 | Let sds.c figure out where the range stops | Pieter Noordhuis | |
2011-01-19 | Discard consumed part of buffer less often | Pieter Noordhuis | |
2011-01-19 | Add testhelp.h inline in sds.c | Pieter Noordhuis | |
2011-01-19 | Update string library | Pieter Noordhuis | |
2011-01-14 | Make dictionary functions static and include the .c file | Pieter Noordhuis | |
2011-01-14 | Correct the description of the pipeline example | Pierre Riteau | |
2011-01-10 | strcasecmp and strncasecmp are defined in strings.h | Pierre Riteau | |
2011-01-07 | Return error on socket timeout for a blocking context | Pieter Noordhuis | |
2010-12-31 | Unsubscribe messages always have 3 elements | Pieter Noordhuis | |
2010-12-31 | Clean up dictionaries on free | Pieter Noordhuis | |
2010-12-31 | Delegate pub/sub replies to the right callback | Pieter Noordhuis | |
2010-12-31 | Add callbacks to channel/pattern dictionaries | Pieter Noordhuis | |
2010-12-31 | Add fields for subscribed channel/pattern names | Pieter Noordhuis | |
2010-12-31 | Remove unused code/cleanup | Pieter Noordhuis | |
2010-12-31 | Replace zmalloc with regular malloc | Pieter Noordhuis | |
2010-12-31 | Import dictionary code from Redis repository (as of 2069d06a) | Pieter Noordhuis | |
2010-12-31 | Change reply processing code to prepare for pub/sub | Pieter Noordhuis | |
2010-12-31 | Copy entire callback in one call | Pieter Noordhuis | |
2010-12-29 | License | Pieter Noordhuis | |
2010-12-29 | Scope event library related data and hooks to a struct | Pieter Noordhuis | |
2010-12-28 | Run pending callbacks with a NULL reply on redisAsyncFree() | Pieter Noordhuis | |
2010-12-28 | Fix the async free() and disconnect() functions | Pieter Noordhuis | |
To make sure that these functions can also be called from functions other than command callbacks, the flag IN_CALLBACK is introduced that holds whether the context is currently executing a callback. If so, redisAsyncFree() and redisAsyncDisconnect() should delegate their task to the reply processor to avoid segfaults. | |||
2010-12-28 | Only check REDIS_FREEING when a callback was executed | Pieter Noordhuis | |
2010-12-28 | Add function to explicitly free an async context | Pieter Noordhuis | |
2010-12-28 | Add write event after setting connect callback | Pieter Noordhuis | |
2010-12-22 | Missing declaration. | Nicolas Favre-Felix | |
2010-12-16 | Bump version | Pieter Noordhuis | |
2010-12-16 | Forgot to add -L. to remaining LDFLAGS | Pieter Noordhuis | |
2010-12-16 | Fix building shared library on Solaris | Pieter Noordhuis | |
2010-12-16 | Solaris doesn't know AF_LOCAL | Pieter Noordhuis | |
2010-12-16 | Add myself to license in some files | Pieter Noordhuis | |
2010-12-16 | Use generic $(MAKE) in Makefile | Pieter Noordhuis | |
2010-12-16 | Redefine REDIS_REPLY_ERROR to be non-zero | Pieter Noordhuis | |
When no reply object functions are defined, the reply type integer is returned from redisGetReply(). This sets the *reply argument to the consumed reply, where 0 means that it was not possible to consume a full reply. With REDIS_REPLY_ERROR having the same value, there is no way to tell the difference between an error reply and not consuming a reply. | |||
2010-12-07 | Fire onConnect callback on the first write event | Pieter Noordhuis | |
2010-12-02 | Redis command getting executed is PING, PONG is actually the expected answer | Amir Mohammad Saied | |
2010-12-02 | Add (nearly) full printf support by delegating to vsprintf | Pieter Noordhuis | |
2010-12-02 | Use more aggressive optimization | Pieter Noordhuis | |