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

Method mget

lib_acl_cpp/src/redis/redis_string.cpp:738–743  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

736/////////////////////////////////////////////////////////////////////////////
737
738bool redis_string::mget(const std::vector<string>& keys,
739 std::vector<string>* out /* = NULL */)
740{
741 build("MGET", NULL, keys);
742 return get_strings(out) >= 0;
743}
744
745bool redis_string::mget(const std::vector<const char*>& keys,
746 std::vector<string>* out /* = NULL */)

Callers 1

test_mgetFunction · 0.80

Calls 2

buildFunction · 0.50
push_backMethod · 0.45

Tested by 1

test_mgetFunction · 0.64