MCPcopy Create free account
hub / github.com/acl-dev/acl / hmget

Method hmget

lib_acl_cpp/src/redis/redis_hash.cpp:126–132  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124/////////////////////////////////////////////////////////////////////////////
125
126bool redis_hash::hmget(const char* key, const std::vector<string>& names,
127 std::vector<string>* result /* = NULL */)
128{
129 hash_slot(key);
130 build("HMGET", key, names);
131 return get_strings(result) >= 0 ? true : false;
132}
133
134bool redis_hash::hmget(const char* key, size_t klen,
135 const std::vector<string>& names,

Callers 3

test_hmgetFunction · 0.80
test_hmgetFunction · 0.80
get_attrsMethod · 0.80

Calls 2

hash_slotFunction · 0.85
buildFunction · 0.50

Tested by 2

test_hmgetFunction · 0.64
test_hmgetFunction · 0.64