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

Method del_keys

lib_acl_cpp/src/redis/redis_key.cpp:73–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

71}
72
73int redis_key::del_keys(const char* first_key, ...)
74{
75 std::vector<const char*> keys;
76
77 keys.push_back(first_key);
78 const char* key;
79 va_list ap;
80 va_start(ap, first_key);
81 while ((key = va_arg(ap, const char*)) != NULL)
82 keys.push_back(key);
83 va_end(ap);
84 return del(keys);
85}
86
87int redis_key::del(const std::vector<string>& keys)
88{

Callers 1

removeMethod · 0.80

Calls 6

delFunction · 0.85
hash_slotFunction · 0.85
buildFunction · 0.50
push_backMethod · 0.45
sizeMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected