Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-28 | Safe allocation wrappers (#754) | Michael Grunder | |
Create allocation wrappers with a configurable OOM handler (defaults to abort()). See #752, #747 | |||
2019-02-20 | fix redisLibeventEvents init | valentino | |
2019-02-20 | libevent: call destroy from cleanup | Mark Nunberg | |
also, indentation fix | |||
2019-02-20 | Add EV_PERSIST flag to read events | Mark Nunberg | |
This will avoid the need to constantly reschedule the event | |||
2019-02-20 | libevent: fix invalid mem access on delete within callback enter | Mark Nunberg | |
2019-02-20 | Fix memory leaks | valentino | |
2019-02-20 | read/write timeouts | Mark Nunberg | |
2018-11-04 | Fix errors not propagating properly with libuv.h. | Yossi Gottlieb | |
2017-03-28 | Update libevent.h | zfz | |
event_del can not free the "e->rev" and "e->wev",that will leak when reconnect the redis | |||
2016-12-09 | Auto merge of #429 - xinchuantao:master, r=badboy | not-a-robot | |
using new version libevent | |||
2016-09-19 | Prevented uv adapter from calling write when context has been freed | Paul Scott | |
2016-05-20 | using new version libevent | Chris.Xin | |
2015-07-27 | Added MacOS X addapter and corresponding example. | Dmitry Bakhvalov | |
Added MacOS X support via CoreFoundation run loop. | |||
2015-07-27 | Make sure to disconnect the adapter in the destructor | Pietro Cerutti | |
2015-07-27 | Fix typo | Pietro Cerutti | |
2015-07-27 | Add hooks for read/write/cleanup | Pietro Cerutti | |
2015-07-27 | Add Qt adapter and relative example. | Pietro Cerutti | |
2015-07-27 | Add an Ivykis adapter | Gergely Nagy | |
This adds a new adapter and an example for using hiredis with the ivykis async I/O library. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org> | |||
2015-06-22 | Use explicit casts for void* pointer in order to compile in C++ | Simon Ninon | |
2015-01-05 | Add GLib 2.0 adapter | Christian Hergert | |
[Cleaned up Makefile and header includes. Didn't change crazy coding style because it's the convention for GLib systems.] Closes #83 Closes #71 | |||
2015-01-05 | Cleanup libuv adapter | torque | |
This: - Removes misplaced libuv function prototype - Includes stdlib for free() Closes #251 | |||
2014-04-09 | Add missing license and copyright for adapters | antirez | |
This is a backport of https://github.com/antirez/redis/commit/d01aad329c259a7276c448cee6696b04dfa6f8c1 | |||
2014-04-09 | Define redisLibuvAttach as static | Charlie Somerville | |
Closes #206 | |||
2014-04-09 | Libuv: Fix compile warnings and C++ compatability | John Graham | |
Closes #189 | |||
2013-06-09 | Removed unnecessary comments | Erik Dubbelboer | |
2013-06-04 | Added libuv adapter | Erik Dubbelboer | |
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-04-21 | sys/types.h is included by libevent itself | Pieter Noordhuis | |
2010-12-29 | Scope event library related data and hooks to a struct | Pieter Noordhuis | |
2010-12-01 | Use extra field for adapter-specific data | Pieter Noordhuis | |
This makes sure that the "data" field on the asynchronous context can be used for user-specific data. | |||
2010-12-01 | Add adapter for the Redis-bundled ae event library | Pieter Noordhuis | |
2010-11-23 | Make the libev adapter work without support for multiple event loops | Pieter Noordhuis | |
2010-11-22 | Explicit casts for the libev adapter | Pieter Noordhuis | |
2010-11-21 | add explicit casts for C++ compiles - C++ disallows implicit casts from | Ryan Tecco | |
void* | |||
2010-11-01 | Move libev/libevent headers to adapters directory | Pieter Noordhuis | |