在 C 中通过网络序列化和同步数据结构

发布于 2024-11-08 04:16:59 字数 242 浏览 0 评论 0原文

是否有一个 C 库可以序列化和/或同步两个不同节点上的数据结构。如果同步不与序列化交织在一起,那就太理想了。总而言之,我想要的是以透明的方式分布式同步数据结构(树、结构等)。

我最接近的答案是 客户端-服务器同步模式/算法?,但是没有提供链接。

Is there a C library that serializes and/or synchronizes data structures on two distinct nodes. It would be ideal if synchronizing is not intertwined with serialization. To summarize, what i want would be distributed synchronization of data structures (trees, structs, etc) in a transparent manner.

The closest i came to an answer is Client-server synchronization pattern / algorithm?, but no links were provided.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风吹雪碎 2024-11-15 04:16:59

据我所知,目前还没有针对C/C++的预制数据同步库。

您可以使用MessagePack,并将last_updated时间戳字段添加到您的结构中。然后您可以使用 MessagePack 比较时间戳并在节点之间传输数据。

MessagePack 甚至在 http://wiki.msgpack.org/ 上提供了有用的快速入门教程页/viewpage.action?pageId=1081387

As far as I know, there is no pre-made data synchronization library for C/C++.

You could use MessagePack, and add a last_updated timestamp field to your structure. Then you could use MessagePack to compare timestamps and transfer data between nodes.

MessagePack even provides a helpful Quick Start tutorial at http://wiki.msgpack.org/pages/viewpage.action?pageId=1081387.

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