| 1003 | } |
| 1004 | |
| 1005 | void 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 | |
| 1015 | void redis_command::build_request(size_t argc, const char* argv[], |
| 1016 | const size_t lens[], string& out) |
nothing calls this directly
no test coverage detected