I'm just about to build a chat application and I'm keen to use node.js (would be my first time using it).
I'm using Amazon ELB (no stickyness) with Multiple Linux EC2 instances (apache) and one mysql database.
I have 3 questions:
AWS ELB - are there any issues running node.js through an AWS Load Balancer - I've read a touch about others having issues but nothing that really said whether it could be done successfully or not.
Can Node.js efficently listern to database tables for updates and then respond to these? Is this realistic? I've read its possible but it didn't sound like its a well used function.
I understand node.js does event listening (like jquery). I'm concerned if I have several seperate webservers all running node.js that they will all respond to the same events. eg: some write some chat into the DB and they all web servers try to send this to the client. (this would be an issue with long polling as one web server would get the request and reply). Is this an issues?
thankyou