英文:
Peer to Peer Network in Go
问题
在Go语言中实现点对点网络的最佳起点是什么?Go语言中有哪些好的特性可以使点对点网络的实现更容易?
英文:
What's the best place to start when implementing a peer to peer network in Go? And is there any good features in Go that would make implementing a peer to peer network easier?
答案1
得分: 6
通道使得在Go语言中处理异步网络事件比许多其他语言更容易。
你应该首先阅读《Go语言网络编程》(http://jan.newmarch.name/go/)。
英文:
Channels make handling asynchronous network events in Go easier than many other languages.
You should start by reading <a href="http://jan.newmarch.name/go/">Network programming in Go</a>.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论