| 381 | } |
| 382 | |
| 383 | Status ClientImpl::zclear(const std::string &name, int64_t *ret){ |
| 384 | const std::vector<std::string> *resp; |
| 385 | resp = this->request("zclear", name); |
| 386 | return _read_int64(resp, ret); |
| 387 | } |
| 388 | |
| 389 | Status ClientImpl::zrank(const std::string &name, const std::string &key, int64_t *ret){ |
| 390 | const std::vector<std::string> *resp; |
no test coverage detected