We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I simply fix it by: 563 int CRedisCommand::CmdRequest(redisContext pContext) 564 { 565 if (m_nArgs <= 0) 566 return RC_PARAM_ERR; 567 568 if (!pContext) 569 return RC_RQST_ERR; 570 571 if (m_pReply) 572 { 573 freeReplyObject(m_pReply); 574 m_pReply = nullptr; 575 } 576 577 m_pReply = static_cast<redisReply *>(redisCommandArgv(pContext, m_nArgs, (const char *)m_pszArgs, (const size_t *)m_pnArgsLen)); +578 return m_pReply ? (m_pReply->type != REDIS_REPLY_ERROR ? RC_SUCCESS : RC_RQST_ERR) : RC_RQST_ERR; 579 }
Please tell me if any errors
The text was updated successfully, but these errors were encountered:
thank you so much , i will check this later
Sorry, something went wrong.
I though is there any API to check redis cluster status? like "cluster info"?
2016-06-16 18:12 GMT+08:00 shawn notifications@github.com:
thank you so much , i will check this later — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub #5 (comment), or mute the thread https://github.com/notifications/unsubscribe/ASqBphCFiHQwKiajTXjjzpMqeL8EKJBPks5qMSGcgaJpZM4IwQB6 .
— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub #5 (comment), or mute the thread https://github.com/notifications/unsubscribe/ASqBphCFiHQwKiajTXjjzpMqeL8EKJBPks5qMSGcgaJpZM4IwQB6 .
Thanks! BestRegards! Min
School of EE&CS, Peking University Email: mwang98@gmail.com
No branches or pull requests
I simply fix it by:
563 int CRedisCommand::CmdRequest(redisContext pContext)
564 {
565 if (m_nArgs <= 0)
566 return RC_PARAM_ERR;
567
568 if (!pContext)
569 return RC_RQST_ERR;
570
571 if (m_pReply)
572 {
573 freeReplyObject(m_pReply);
574 m_pReply = nullptr;
575 }
576
577 m_pReply = static_cast<redisReply *>(redisCommandArgv(pContext, m_nArgs, (const char *)m_pszArgs, (const size_t *)m_pnArgsLen));
+578 return m_pReply ? (m_pReply->type != REDIS_REPLY_ERROR ? RC_SUCCESS : RC_RQST_ERR) : RC_RQST_ERR;
579 }
Please tell me if any errors
The text was updated successfully, but these errors were encountered: