I'm new to node.js my current stack: BE: php, java, hbase, hadoop, AWS (RDS, ec2, etc..), redis, mysql (RDS) FE: backbone.js, require.js and more..
My code is php and java based. I would love to integrate real-time for notifications, search and "social features" (current online friends for example).
I'm going to use socket.io , of course...
questions:
how to handle sessions between php <-> node.js ? (no problem via
redis, but how?)running nginx + node.js to serve php ? (using the non blocking i/o of node) OR running apache + php as usual + nginx + node.js + socket.io (completley different instance) - both cases - how the client can be conneted BOTH via php and socket.io -> node.js? (same domain)
I'd love to use it as JS on the server-side is amazing. I saw the new nodephp (react) , which is totally new... and again, using non-blocking i/o is a must for me.
Thanks