std::vector<char> RedisClientImpl::makeCommand(const std::vector<RedisBuffer> &items) {     static const char crlf[] = {'\r', '\n'};     std::vector<char> result;     append(result, '*');     append(result, boost::lexical_cast<std::string>(items.size()));     append<>(result, crlf);     std::vector<RedisBuffer>::const_iterator it = items.begin(), end = items.end();     for(; it != end; ++it)     {         append(result, '$');         append(result, boost::lexical_cast<std::string>(it->size()));         append<>(result, crlf);         append(result, *it);         append<>(result, crlf);     }     return result; }

이쁘다이쁘다

헤헤