| 347 | |
| 348 | |
| 349 | Status ClientImpl::zget(const std::string &name, const std::string &key, int64_t *ret){ |
| 350 | const std::vector<std::string> *resp; |
| 351 | resp = this->request("zget", name, key); |
| 352 | return _read_int64(resp, ret); |
| 353 | } |
| 354 | |
| 355 | Status ClientImpl::zset(const std::string &name, const std::string &key, int64_t score){ |
| 356 | std::string s_score = str(score); |
no test coverage detected