ServiceStack 可以对非 HTTP 客户端(例如 Google Protocol Buffers)使用二进制序列化器吗?
作为 ServiceStack 支持二进制响应吗? 的后续内容,我想知道是否有构建(或计划)使用二进制序列化器的注入点,例如 Mark Gravell 的 protobuf-net 提高非 HTTP 客户端之间的效率。事实上,协议缓冲区很快就会在 JavaScript 中发挥作用。
As a followup to Does ServiceStack support binary responses?, I'm wondering whether there are injection points built (or planned) to use binary serializers such as Mark Gravell's protobuf-net for efficiency between non-HTTP clients. In fact, it might not be long before protocol buffers work in JavaScript.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,ServiceStack 有一个自定义可插入格式 API,其中有自己的内置 CSV 格式 和 HTML Report Format 均使用它注册。 Nortwind数据库自定义v-card媒体类型的教程展示了如何注册使用此 API 您自己的格式/媒体类型。
计划在不久的将来支持 protobuf-net。 ServiceStack Group 中有人正在考虑添加对其的支持。无论如何,我计划尽快与 protobuf-net 的作者联系,以便找到添加对其支持的最佳方法。
Yep, ServiceStack has a custom pluggable format API where its own built-in CSV Format and HTML Report Format are both registered using it. The tutorial of Nortwind Database's custom v-card media type shows how to register your own format/media type using this API.
Support for protobuf-net is planned for the near future. There was someone on the ServiceStack Group looking at exploring adding support for it. In any case, I plan to be catching up with protobuf-net's author soon so I'll find out the best way of how to add support for it then.