sewenew / redis-plus-plus

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

[QUESTION] How to retrieve results from HGETALL with pipeline? #346

Closed jangitje closed 2 years ago

jangitje commented 2 years ago

[QUESTION] I'm trying to use pipeline in combination with hgetall. Without pipeline the result can be easily inserted into a vector. But has does it work with a pipeline? I want to use pipeline because I need to speed up the lookups. Working with Redis Cluster. #346

sewenew commented 2 years ago

You can check the test code for an example.

Regards

jangitje commented 2 years ago

Thanks, it's now clear