Nordix / hiredis-cluster

C client library for Valkey/Redis Cluster. This project is used and sponsored by Ericsson. It is a fork of the now unmaintained hiredis-vip.
BSD 3-Clause "New" or "Revised" License
86 stars 42 forks source link

Replace clusterclient_async_sequence with clusterclient_async #184

Closed bjosv closed 1 year ago

bjosv commented 1 year ago

The clusterclient_async test binary now provides all features that previously only existed in clusterclient_async_sequence. clusterclient_async_sequence is therefor removed.

Inherits clusterclient_async_sequence's behaviour by sending commands sequentially instead of queuing all commands before starting the event engine. This allows testcases to perform behavioral changes between commands using action commands. See clusterclient_async.c for more details.