eaziz4
eaziz4
Is there a plan to add this? In the same boat and I have no idea what the optimal way is to extract my data from the result
Gotcha. I will build without specifying that. Are there other flags to be set for increased performance besides CFLAGS="-DUSE_PROCESSOR_CLOCK"?
I will most likely use FT.AGGREGATE as it is faster. here are the two resp3 responses for them. Thanks! ``` redis-cli FT.SEARCH betsIdx "*" RETURN 1 compressedBet LIMIT 0 10...
Running the following command using this library takes around 4.5 seconds, where the same command using https://github.com/boostorg/redis takes 0.31 seconds for 109,000 hashes. I wanted to switch to this library...
With the code you sent, it takes 0.405 seconds. This is a significant difference and parsing the response is definitely taking a long time. I'm a little confused on how...
I'm fine not offloading them as they aren't extremely expensive, I just figured by not doing so it would slow things down. I also thought of that as a way...
I think I worded my original question really poorly. My use case is maintaining a real time orderbook. I _can_ put all of my processing logic into my client and...
> Have you considered using an [experimental::basic_concurrent_channel](https://www.boost.org/doc/libs/develop/doc/html/boost_asio/reference/experimental__basic_concurrent_channel.html) to send new subscribe requests to the other thread? Are there any examples of a websocket client that uses this? This logically sounds...