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.
How can I ask google for advice?
t0ster
2010-02-24 23:11:22
A:
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
2010-06-28 01:53:40