一台服务器与多个客户端进行数据通信
我有一个关于如何实现服务器和多个客户端进行数据通信的问题。
他们为每个步骤共享相同的数据集。也就是说,服务器为每个客户端获取相同步骤的数据。我不知道如何同步所有客户端并为每个步骤传送数据文件。
你能给我一些提示或基本想法吗?一个例子就完美了。
I have a question on how to implement a server and multiple clients with data communication.
They share the same dataset for each step. That is, a server gets the same step's data for each client. I have no idea how to sync all clients and communicate data file for each step.
Can you give me some hints or a basic idea? An example will be perfect.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
抢夺这些
python 中的多线程多客户端服务器
Python 中的客户端服务器编程?
http://ilab.cs.byu.edu/python/select/echoserver。 html
Take a loot at these
Multi-threaded multi-client server in python
Client Server programming in python?
http://ilab.cs.byu.edu/python/select/echoserver.html
如果您不想处理套接字和连接处理等细节,并且喜欢跳水,您应该查看 Twisted
这是一个使用 Twisted 服务器的简单示例来回答
If you don't want to deal with details like socket and connection handling and you like high diving, you should look into Twisted
Here's a SO answer with a simple example of a server using Twisted