英文:
Should i use gRPC in android (client) and node js (server) to make a video call?
问题
我正在学习使用Android Java作为客户端,Node.js作为服务器端的gRPC。现在我想要创建一个视频通话应用程序。我应该使用gRPC还是其他框架来完成这个任务?如果不是,你能给我提供另一个建议吗?谢谢。
英文:
I'm learning gRPC with android java is client and Node js is server side.
Now i want create a video call application.
Should i use gRPC or other framework for this task ?
If not Could you give me another suggest ?
Thank you
答案1
得分: 1
TL;DR;
如果是我,我会选择使用gRPC。
我不知道这是否对你有帮助,但我使用WebSocket构建了视频流应用。不过,我也看过关于HTTP/2的内容,我非常喜欢gRPC,从开发者的角度来看,它速度很快,我认为它会逐渐成为标准。你可以查看以下资源以供阅读:
- https://www.infoq.com/articles/websocket-and-http2-coexist/
- https://www.stevejgordon.co.uk/server-streaming-with-grpc-in-asp-dotnet-core
- https://medium.com/@EdgePress/is-grpc-the-future-of-client-server-communication-b112acf9f365
英文:
TL;DR;
If i were you, i would go for gRPC.
I do not know if it will help you or not but i build video streaming applications with websockets. But with HTTP/2 i did look at gRPC and i like it a lot from a developer stand point. It is fast and i think it will become the standard over time. You can look at this sources if you like to read:
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论