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
pool_.reset(new acl::redis_client_pool(addr, maxConn)); if (!pool_->aliving()) { acl_msg_error("pool not aliving"); return false; } acl_msg_info("%s: created pool", __FUNCTION__); if(param_.connTimeout_ > 0 && param_.reqTimeout_ > 0) { acl_msg_info("%s: set timeout %d,%d", __FUNCTION__, param_.connTimeout_, param_.reqTimeout_); pool_->set_timeout(param_.connTimeout_, param_.reqTimeout_); } auto client = pool_->peek(); if(nullptr == client) { acl_msg_error("error peek client"); return false; } acl_msg_info("peeked client");
The text was updated successfully, but these errors were encountered:
建立使用 redis_client_cluster 做为通信类试一下。
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: