문제

I'm implementing web application in python using tornado web server with javascript client (using extjs). What is the best framework to implement rpc in such application?

During search I found tornadorpc library but I'm afraid it won't be useful because it's too old (last commit 2 years ago, and four mails in mailing list) and autobahn which needs Twisted (Twisted has slower websockets than Tornado, which is also important too me).

Any help? :)

도움이 되었습니까?

해결책

What you want from tornado-rpc server? How you can measure usefulness?

Tornado RPC just works and works fine. It supports jsonrpc. You can fork and improve it.

Also you can combine twisted and tornado, and use twisted for rpc and tornado for websockets.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top