在 iOS 中实现 Thrift 服务器
如何使用thrift在iOS中实现服务器端?使用 thrift wiki,我能够弄清楚如何使用 thrift 编写客户端,但似乎没有编写服务器的文档。任何示例代码将不胜感激。
How do you implement the server side in iOS using thrift? Using the thrift wiki, I was able to figure out how to write a client using thrift, but there seems to be no documentation in writing the server. Any example code would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAIK 你不能在 Objective C 中使用服务器,因为只支持客户端绑定。不过,您可以使用 C/C++ 服务器绑定。您的用例是什么?在 iOS 设备上安装服务器似乎很奇怪。
以下是 C++ 使用文档的链接。
AFAIK You can't have the server in Objective C as only the client bindings are supported. You can however use the C/C++ server bindings. What is your use case? It seems odd to have the server on an iOS device.
Here is the link to the C++ usage docs.