SimpleXMLRPCServer 是单线程的吗?

发布于 2024-10-17 22:21:04 字数 343 浏览 7 评论 0原文

可能的重复:
具有并发请求的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

-残月青衣踏尘吟 2024-10-24 22:21:04

我相信 SimpleXMLRPCServer 的库实现确实是单线程的。您必须添加一个 mixin 才能使其以多线程方式服务请求:

from SocketServer import ThreadingMixIn
from SimpleXMLRPCServer import SimpleXMLRPCServer

class MyXMLRPCServer(ThreadingMixIn, SimpleXMLRPCServer):
    """..."""

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:

from SocketServer import ThreadingMixIn
from SimpleXMLRPCServer import SimpleXMLRPCServer

class MyXMLRPCServer(ThreadingMixIn, SimpleXMLRPCServer):
    """..."""
请远离我 2024-10-24 22:21:04

如果您只需要应用程序处理 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文