cpp_redis v3.3.0 Release Notes

  • ๐Ÿท Tag

    3.3.0.

    ๐Ÿ”„ 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