sewenew / redis-plus-plus

Redis client written in C++
Apache License 2.0
1.64k stars 351 forks source link

[QUESTION] xadd and xread via async interface #580

Closed FScHalm closed 4 months ago

FScHalm commented 4 months ago

Hi.

I just started using redis-plus-plus and wonder how to use xadd and xread async. For non async (sw::redis::Redis) there are interfaces, but can not find them for sw::redis::AsyncRedis.

Thanks

sewenew commented 4 months ago

You can use the generic interface for AsyncRedis, i.e. the AsyncRedis::command method, to do the work. Check the Getting Started section for example.

Regards

sewenew commented 4 months ago

Since there's no update, I'll close this issue.

Regards