i have a website that displays all kind of info to the client. It has a chat, a different kind of chat, a couple of notifications, etc.
The way i build this is that every ajax call, for each of the chat and notification, happens every second. So at any given point i have at lease 5 requests happening.
for example the chat has to look alive, if there is a email notification i want to show it when it happens, if there is a friend request i want to show it right then.
Everything looks ok so far, but i am wondering is there is a limit or if is just bad to do it like this. In the same time i want the user experience t be the best.
Any ideas?