SimpleXMLRPCServer 是单线程的吗?
可能的重复:
具有并发请求的 Python XMLRPC
我正在编写一个python应用程序,它将充当xml- rpc 服务器,使用 SimpleXMLRPCServer 类。
现在我的问题是:如果 2 个或更多客户端同时发送请求会发生什么?他们在排队吗? 我是否能保证如果两个客户端调用相同或不同的函数,它们会相继执行而不是同时执行?
Possible Duplicate:
Python XMLRPC with concurrent requests
I'm writing a python application which will act as xml-rpc server, using SimpleXMLRPCServer class.
Now my question is: what happens if 2 or more clients send a request at the same time? Are they queued?
Do I have the guarantee that if two clients call the same or different functions they are executed one after another and not at the same time?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我相信
SimpleXMLRPCServer
的库实现确实是单线程的。您必须添加一个 mixin 才能使其以多线程方式服务请求:I believe the library implementation of
SimpleXMLRPCServer
is indeed single-threaded. You have to add a mixin to make it serve requests in a multi-threaded way:如果您只需要应用程序处理 XML-RPC 请求(如果需要,一次多个),您可以查看 Pythomnic 框架。
If you just need your application to process XML-RPC requests (more than one at a time if needed) you may take a look at Pythomnic framework.