sewenew

Results 163 comments of sewenew

> I manually shutdown the Redis before the deconstruction of std::lock_guard Sorry, I missed this. Yes, this is a problem. Looks like that `unlock` should not throw. However, in this...

I'm not familiar with shared memory. However, after some searching, I found [this link](https://stackoverflow.com/questions/12969391/is-it-possible-to-store-polymorphic-class-in-shared-memory/12969510#12969510) says that class with virtual pointer cannot work with shared memory. Redis class has 2 shared_ptr...

> I'm supposed to create as many process user requests This is not a good idea. You'd better reuse the connection. Since you've solved the problem, I'll close this issue....

> My question is when does this operation start? Is it upon a successful connection or after a command? Or something different. Once you create an AsyncRedisCluster object, it begins...

@mike1821 Sorry, but I cannot reproduce your problem. If you catch the exception, your application should not terminate. Please try the following code: ``` auto cluster = AsyncRedisCluster("tcp://127.0.0.1:7000"); while (true)...

@georgasa So far, redis-plus-plus tries to fetch the slot-node mapping once the AsyncRedisCluster is created. However, it only checks if it can get the mapping, but does not check if...

Before the feature is supported, you can use the generic command to send these commands. Regards

Thanks for your PR! However, it's not a good idea to parse the reply to `redisReply*`. There's an override `command` interface that returns `RedisUPtr`, however, it might not fit for...

Instead of exposing redisReply to user, I was planing to expose a ReplyParser interface. So that user can parse redisReply to a user defined data structure. That might solve your...

redis-plus-plus is based on hiredis. It seems that hiredis does not support any API to update certs settings. So this feature cannot achieved so far. We can achieve updating password...