托管 Thrift 服务有哪些选项?
我刚刚开始探索 Thrift 框架。我想用 C# 构建一个托管在 Windows 服务器上的 Thrift 服务。现在,根据不同的教程,我可以在控制台应用程序项目中创建 Thrift 服务。
但是,我想知道实际的 Thrift 服务将如何托管在 Windows 服务器下。我应该构建一个启动 Thrift 服务的窗口服务应用程序吗?
I am just started exploring Thrift framework. I'd like to build a Thrift service in C# that will be hosted on a windows server. Right now, according varies tutorials, I am able create a Thrift service within a console application project.
However, I am wondering how the actual Thrift service is going to be hosted under Windows server. Should I build a window service application that launch the Thrift service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
共有三个选项:
There are three options:
是的,选择权在你手中。您可以根据您的要求将 Thrift 服务合并到控制台应用程序或 Windows 服务应用程序中。
Yes the choice is in your hands. You can incorporate the thrift service in a console app or a windows service application based on your requirements.