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

Method build_request1

lib_acl_cpp/src/redis/redis_command.cpp:1005–1013  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1003}
1004
1005void redis_command::build_request1(size_t argc, const char* argv[], const size_t lens[])
1006{
1007 if (request_buf_ == NULL) {
1008 request_buf_ = NEW string(256);
1009 } else {
1010 request_buf_->clear();
1011 }
1012 build_request(argc, argv, lens, *request_buf_);
1013}
1014
1015void redis_command::build_request(size_t argc, const char* argv[],
1016 const size_t lens[], string& out)

Callers

nothing calls this directly

Calls 3

stringClass · 0.50
build_requestFunction · 0.50
clearMethod · 0.45

Tested by

no test coverage detected