7

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.

Roman Dolgiy
  • 1,521
  • 1
  • 15
  • 21

3 Answers3

2

The are some alternatives to Pyro if you really need high loads:

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
  • @Joren, linked page won't change. – anatoly techtonik Feb 02 '15 at 12:34
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