MCPcopy Create free account
hub / github.com/cinience/RedisStudio / zrange

Method zrange

RedisStudio/SSDB/SSDB_impl.cpp:401–410  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

399}
400
401Status ClientImpl::zrange(const std::string &name,
402 uint64_t offset, uint64_t limit,
403 std::vector<std::string> *ret)
404{
405 std::string s_offset = str(offset);
406 std::string s_limit = str(limit);
407 const std::vector<std::string> *resp;
408 resp = this->request("zrange", name, s_offset, s_limit);
409 return _read_list(resp, ret);
410}
411
412Status ClientImpl::zrrange(const std::string &name,
413 uint64_t offset, uint64_t limit,

Callers 1

GetDataMethod · 0.80

Calls 3

requestMethod · 0.95
strFunction · 0.85
_read_listFunction · 0.85

Tested by

no test coverage detected