xmlprclib/server not reusing connections

Skip Montanaro skip at pobox.com
Mon Feb 23 16:50:32 EST 2004


    Roger> It appears that xmlrpclib and/or SimpleXMLRPCServer always use
    Roger> new connections for each request.  I have been trying to make
    Roger> them reuse the existing connection but can't find where.  Is
    Roger> there any particular reason they go to such great lengths to call
    Roger> shutdown/close/finish as well as making new connection objects in
    Roger> xmlrpclib?

Connection reuse would be done at a lower level I think.  Take a look at the
httplib module.  Take a look at xmlrpclib's MultiCall class for another way
to improve performance in some situations.

Skip




More information about the Python-list mailing list