没有可选字段的协议缓冲区:固定大小?
我正在使用 Google Protocol 缓冲区,并尝试确定以下内容:
如果我的协议缓冲区不包含重复字段,并且所有字段都是必需的,那么是否可以安全地假设缓冲区始终具有相同的大小,无论其内容如何?
谢谢。
I'm using Google Protocol buffers and am trying to determine the following:
If my protocol buffer contains no repeating fields, and all fields are required, is it safe to assume the buffer will always be the same size, regardless of its contents?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。鉴于所提供的信息,这不是正确的假设。
某些类型(尤其是 Base 128 Varints)使用变量编码。另请考虑字符串(具有未指定的有效负载)作为另一个反例。
快乐编码。
No. This is not correct assumption given the information provided.
Some types (notably Base 128 Varints) use a variable-encoding. Also consider Strings (with unspecified payloads) as another counter-example.
Happy coding.