Open xb1520 opened 11 months ago
消除void TcpConnection::send(Buffer* buf)中buf的copy
void TcpConnection::send(Buffer* buf)
retrieveAllAsString函数会生成一个临时的string,造成内存copy,使用std::move消除内存拷贝
retrieveAllAsString
std::move
消除
void TcpConnection::send(Buffer* buf)
中buf的copyretrieveAllAsString
函数会生成一个临时的string,造成内存copy,使用std::move
消除内存拷贝