This repository was archived by the owner on Apr 6, 2019. It is now read-only.
v3.3.0
Changes
- Rename
redis_client::before_callbackintoredis_client::set_callback_runnerwhich is more relevant. - Before,
future_clientautomatically called.commitwhen sending a command, meaning that no pipelining was done for thefuture_client. This has been changed and thefuture_clientdo not call.commitanymore: this is a breaking change and you must call.commitor.sync_commitwhen you wish the commands to be effectively sent. Please refer to the examples if necessary.
Additions
- Add
commitandsync_commitmethodsto thefuture_clientfor pipelining support. - documentation for
redis_client::before_callbackhas been added - documentation for
future_clienthas been added
Removals
None