Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-07-11 | Merge pull request #112 from nessence/master | Pieter Noordhuis | |
MONITOR causes assertion failure, async.c, line 398. | |||
2012-07-11 | async: support for determining monitor mode, if so, repush replies callback ↵ | Alex Leverington | |
in expectation of another reply. | |||
2012-04-18 | Use poll() instead of select() inside redisContextWaitReady() | Mark Ellzey | |
The current select() is limiting in instances where the fd num is > FD_SETSIZE. Since redisContextWaitReady() only processes a single fd, select would still fail. For compatibility reasons I have converted select() over to poll(), eliminating this problem. | |||
2012-02-06 | Update README with actual async callback behavior | Pieter Noordhuis | |
See issue #79, thanks to @ewencp. | |||
2011-12-20 | Merge pull request #72 from chipdude/master | Pieter Noordhuis | |
Fix self-test of connect error on Linux; merge duplicated string (DRY) | |||
2011-12-20 | DRY list of integer formats | Chip Salzenberg | |
2011-12-20 | more error messages | Chip Salzenberg | |
2011-12-02 | Merge pull request #70 from mrb/increase_read_depth | Pieter Noordhuis | |
Increase read depth by one, would allow ruby redis client to read from slowlog | |||
2011-12-02 | increase read depth by one, would allow ruby redis client to read from slowlog | mrb | |
2011-11-28 | Merge pull request #67 from jzwinck/master | Pieter Noordhuis | |
A small fix for outdated/typo'd comments in hiredis.c | |||
2011-11-28 | Fix minor inconsistencies in comment. | John Zwinck | |
2011-07-20 | Merge pull request #47 from geoffgarside/addrinfo | Pieter Noordhuis | |
Use getaddrinfo | |||
2011-07-11 | Merge pull request #54 from rtyler/pu | Pieter Noordhuis | |
Include stdlib.h in async.c for free(3), realloc(3) and strtol(3) support | |||
2011-07-10 | Include stdlib.h in async.c for free(3), realloc(3) and strtol(3) support | R. Tyler Croy | |
2011-07-10 | Put back missing socket error check after select(2) | Pieter Noordhuis | |
2011-07-10 | Colorize test outcome | Pieter Noordhuis | |
2011-07-10 | Merge branch 'printf-width' | Pieter Noordhuis | |
2011-07-10 | Test all supported types for printf-like formatting | Pieter Noordhuis | |
2011-07-09 | Abort on invalid format | Pieter Noordhuis | |
There is no way we can guess the width of the argument when we cannot infer its type from the format specifier. | |||
2011-07-09 | Use correct type when calling va_arg in formatter | Pieter Noordhuis | |
2011-07-09 | Update printf-formatting tests to fail | Pieter Noordhuis | |
2011-07-04 | Merge pull request #51 from rtyler/master | Pieter Noordhuis | |
Minor fixes to the libev.h and other async adapters | |||
2011-06-27 | Update examples | Pieter Noordhuis | |
2011-06-27 | Change prototype of connect callback | Pieter Noordhuis | |
This commit adds a status argument to the connect callback. It will be called in the event of an unsuccessful connection as well, where the status argument is set to REDIS_ERR. It is set to REDIS_OK otherwise. | |||
2011-06-27 | Extract function to check a socket for errors | Pieter Noordhuis | |
2011-06-27 | Use macro's for event loop hooks | Pieter Noordhuis | |
2011-06-27 | Convert the rest of the async adapters contain static functions for easier ↵ | R. Tyler Croy | |
linking | |||
2011-06-27 | Make libev adapter functions static to fix linking | R. Tyler Croy | |
This will allow two different compilation units to include libev.h and link together | |||
2011-06-27 | Add implied include of stdlib.h | R. Tyler Croy | |
2011-06-19 | Bump patch version | Pieter Noordhuis | |
2011-06-19 | Add changelog | Pieter Noordhuis | |
2011-06-19 | Revert "Add function to retrieve formatted reply" | Pieter Noordhuis | |
This reverts commit 77540aa31694aa1e14d41f60a0452e49a2fed86a. The change in buffer strategy is too large to put in a minor release. It is put in a separate branch in the meantime, so it can be refined and released together with a minor version bump. | |||
2011-06-19 | Fix gprof target | Pieter Noordhuis | |
2011-06-19 | Coverage report | Pieter Noordhuis | |
2011-06-19 | Use CFLAGS and LDFLAGS instead of custom variables | Pieter Noordhuis | |
2011-06-19 | Append to REAL_LDFLAGS so LDFLAGS can be overridden by the user | Pieter Noordhuis | |
2011-06-19 | Pass LDFLAGS to linker when creating dynamic library | Pieter Noordhuis | |
2011-06-19 | Remove unnecessary overrides | Pieter Noordhuis | |
2011-06-19 | Don't pass CFLAGS when linking | Pieter Noordhuis | |
2011-06-18 | Add phony target | Pieter Noordhuis | |
2011-06-18 | Remove unused variables | Pieter Noordhuis | |
The variable OBJARCH was used to compile objects for both 32-bit and 64-bit architectures. It can be removed because this is only relevant for the Ruby wrapper for hiredis. This wrapper should put these flags in CFLAGS to get the same effect. | |||
2011-06-18 | Swap arguments | Pieter Noordhuis | |
2011-06-18 | Merge DEBUG in REAL_CFLAGS | Pieter Noordhuis | |
2011-06-18 | Allow *extra* CFLAGS/LDFLAGS via arguments | Pieter Noordhuis | |
2011-06-18 | Merge branch 'makefile' | Pieter Noordhuis | |
2011-06-18 | Move redirection around | Pieter Noordhuis | |
2011-06-18 | Disallow overriding CFLAGS and LDFLAGS | Pieter Noordhuis | |
2011-06-18 | Move path variables closer to install target | Pieter Noordhuis | |
2011-06-18 | Move defaults outside if block | Pieter Noordhuis | |
2011-06-18 | Library variables may not be overridden | Pieter Noordhuis | |