What RPC framework/lib for python could you recommend me? The architecture is client-server, server should stand high load, and connection tunneled over ssl. I've googled such things as pyro, twisted.spread, rpyc.
Asked
Active
Viewed 6,801 times
7
-
4http://stackoverflow.com/questions/1879971/what-is-the-current-choice-for-doing-rpc-in-python – Corey Goldberg Feb 19 '10 at 23:26
-
xmlrpc was advised in those discussion but I don't need xmlrpc or soap. – Roman Dolgiy Feb 24 '10 at 23:18
3 Answers
2
The are some alternatives to Pyro if you really need high loads:
- http://pypi.python.org/pypi/jpc (see more on http://winpdb.org/2009/11/enter-jpc/)
- From the same guy: http://code.google.com/p/rfoo/
Both are really fast. The second one needs Cython, however; so you can try jpc on the first place.

manu
- 3,544
- 5
- 28
- 50
2
You may like rpclib that is good presented in this lighting talk from PyCon 2012.

anatoly techtonik
- 19,847
- 9
- 124
- 140
-
While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Joren Feb 02 '15 at 01:27
-
1
Look at http://rpyc.sourceforge.net/index.html It is very nice micro RPC library with async calls, SSL, etc.

Darek
- 2,861
- 4
- 29
- 52