Speed up writing protobuf strings/bytes

This commit is contained in:
J. Nick Koston 2023-11-24 07:50:00 -06:00
parent c9359efa4f
commit 8464045a38
No known key found for this signature in database
1 changed files with 1 additions and 2 deletions

View File

@ -160,8 +160,7 @@ class ProtoWriteBuffer {
this->encode_field_raw(field_id, 2);
this->encode_varint_raw(len);
auto *data = reinterpret_cast<const uint8_t *>(string);
for (size_t i = 0; i < len; i++)
this->write(data[i]);
this->buffer_->insert(this->buffer_->end(), data, data + len);
}
void encode_string(uint32_t field_id, const std::string &value, bool force = false) {
this->encode_string(field_id, value.data(), value.size());