Skip to content
This repository has been archived by the owner on Apr 6, 2019. It is now read-only.

v3.3.0

Compare
Choose a tag to compare
@Cylix Cylix released this 04 Apr 06:17
· 87 commits to master since this release

Changes

  • Rename redis_client::before_callback into redis_client::set_callback_runner which is more relevant.
  • Before, future_client automatically called .commit when sending a command, meaning that no pipelining was done for the future_client. This has been changed and the future_client do not call .commit anymore: this is a breaking change and you must call .commit or .sync_commit when you wish the commands to be effectively sent. Please refer to the examples if necessary.

Additions

  • Add commit and sync_commit methodsto the future_client for pipelining support.
  • documentation for redis_client::before_callback has been added
  • documentation for future_client has been added

Removals

None