sewenew

Results 163 comments of sewenew

@chunyisong Sorry, but the completion time of this feature has not been determined. I've already started a [in-memory cache project](https://github.com/sewenew/cache), but still not finished. Client side cache depends on this...

The solution I mentioned above should not be a complex one. I'll try to implement it when I have time (maybe next week). Sorry, too busy these days... Regards

@mlaczin If I understand correctly, even if you get the slot range info, you cannot call `RedisCluster::command("JSON.MGET", ...)` with 1 2 3, if these 3 keys do NOT belong to...

This problem has been [fixed](https://github.com/sewenew/redis-plus-plus/commit/b6f79b97447e657dc8519035aabfe6197d043e25). When some slot is uncovered, redis-plus-plus update the slot-node mapping asynchronously. So that it makes the operation less expensive, and keep the slot-node mapping updated....

Since hiredis already supports skipping certificate verification, I added [this support for redis-plus-plus](). In order to use this feature, you need to install hiredis v1.1.0 or above with TSL support....

I’ll publish a new release these days with some other changes. I’ll let you know when I’m done. Regards ________________________________ 发件人: Ganesh ***@***.***> 发送时间: Thursday, April 27, 2023 8:14:47 PM...

I’ve already published a release with this feature. Regards ________________________________ 发件人: Ganesh ***@***.***> 发送时间: Thursday, April 27, 2023 8:14:47 PM 收件人: sewenew/redis-plus-plus ***@***.***> 抄送: sewenew ***@***.***>; Mention ***@***.***> 主题: Re:...

The problem is that we still haven't decided how to distinguish different connections in the connection pool. If you have any suggestion or even better any clue on how do...

I've implemented this feature, and as you suggested, all connections in the pool have the same name. You can test the latest code on master branch with the following code:...

The problem is that `ostream_iterator::value_type` is `void` not `string`, and redis-plus-plus cannot correctly parse reply to it. A workaround is that you can parse the reply to `vector`, and move...