I have a Python Flask application, and I'm going to start implementing websockets, and I don't want all this to be done in node.js for several reasons;
Node.js use less overhead, and I like the idea of ββseparating heavier logic from more heavy traffic.
Node.js seems to have better support for websites and are becoming more mature.
And I can later move node.js to a separate server if necessary for performance.
My question is, what would be the best way to create a connection between my flash application and node.js? Is it a bad idea to set it up as follows?
source share