protobuf-net 序列化对象图

发布于 2024-11-14 10:24:44 字数 146 浏览 2 评论 0原文

如果我有对象 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花想c 2024-11-21 10:24:44

由 Google 定义的原始“protobuf”规范是一个树序列化器(如 XmlSerializer)。因此,默认情况下,您将获得 C 序列化两次,并在反序列化时获得两个不同的对象。

然而,这是一个非常常见的问题,因此在“v2”中我将其作为选择加入行为提供;请注意,您应该仅将其用于 protobuf-net 到 protobuf-net,因为其他客户端不会期望此配置(尽管它仍然是有效的 protobuf 流)。

例如(使用属性,您也可以使用运行时模型):

[ProtoContract]
public class A {
    ...
    [ProtoMember(5, AsReference=true)]
    public C Foo {get;set;}
}

[ProtoContract]
public class B {
    ...
    [ProtoMember(7, AsReference=true)]
    public C Bar {get;set;}
}

[ProtoContract]
public class C {...}

这将序列化实例一次,在输出中生成唯一的 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):

[ProtoContract]
public class A {
    ...
    [ProtoMember(5, AsReference=true)]
    public C Foo {get;set;}
}

[ProtoContract]
public class B {
    ...
    [ProtoMember(7, AsReference=true)]
    public C Bar {get;set;}
}

[ProtoContract]
public class C {...}

This will serialize the instance once, generating an id unique in the output. When deserialized, the same object will be used in both places.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文