Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 1.35 KB

CHANGELOG.md

File metadata and controls

44 lines (30 loc) · 1.35 KB

CHANGELOG

v1.0.3

  • Fixed bug in eredis_sub where when the connection to Redis was lost, the socket would not be set into {active, once} on reconnect. Thanks to georgeye for the patch.

v1.0.2

  • Fixed bug in eredis_sub where the socket was incorrectly set to {active, once} twice. At large volumes of messages, this resulted in too many messages from the socket and we would be unable to keep up. Thanks to pmembrey for reporting.

v1.0

  • Support added for pubsub thanks to Dave Peticolas (jdavisp3). Implemented in eredis_sub and eredis_sub_client is a subscriber that will forward messages from Redis to an Erlang process with flow control. The user can configure to either drop messages or crash the driver if a certain queue size inside the driver is reached.

  • Fixed error handling when eredis starts up and Redis is still loading the dataset into memory.

v0.7.0

  • Support added for pipelining requests, which allows batching multiple requests in a single call to eredis. Thanks to Dave Peticolas (jdavisp3) for the implementation.

v0.6.0

  • Support added for transactions, by Dave Peticolas (jdavisp3) who implemented parsing of nested multibulks.

v0.5.0

  • Configurable reconnect sleep time, by Valentino Volonghi (dialtone)

  • Support for using eredis as a poolboy worker, by Valentino Volonghi (dialtone)