protobuf-net 序列化对象图
如果我有对象 A 和 B 都包含一些字段序列化字段 F,并且都指向同一个可序列化对象 C。protobuf-net 是按引用序列化还是按值序列化?当对象图反序列化时,protobuf-net是否为AF和BF生成2个单独的对象?我问这个问题是因为我想知道序列化是否保留引用相等性。
If I have object A and B both contain some field serialized field F, and both point to the same serializable object C. Does protobuf-net serialize by reference or serialize by value? When the object graph is deserialized, does protobuf-net generate 2 separate objects for A.F and B.F? I'm asking because I want to know if serialization preserves reference equality.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由 Google 定义的原始“protobuf”规范是一个树序列化器(如 XmlSerializer)。因此,默认情况下,您将获得 C 序列化两次,并在反序列化时获得两个不同的对象。
然而,这是一个非常常见的问题,因此在“v2”中我将其作为选择加入行为提供;请注意,您应该仅将其用于 protobuf-net 到 protobuf-net,因为其他客户端不会期望此配置(尽管它仍然是有效的 protobuf 流)。
例如(使用属性,您也可以使用运行时模型):
这将序列化实例一次,在输出中生成唯一的 id。反序列化时,两个地方都会使用同一个对象。
The raw "protobuf" spec, a defined by Google, is a tree serializer (like XmlSerializer). So by default you would get C serialized twice, and two different objects when deserialized.
However, this is such a common question that in "v2" I provide this as an opt-in behaviour; note you should only use this for protobuf-net to protobuf-net, as other clients will not expect this configuration (although it remains a valid protobuf stream).
For example (using attributes, bit you can also use a runtime model instead):
This will serialize the instance once, generating an id unique in the output. When deserialized, the same object will be used in both places.