I have a webserver that I'm currently renting from a host. They don't allow webrtc or node.js or anything like that.
I have a messaging system using PHP/SQL/Ajax (When user's viewing the message thread, it fetches new data every 60 seconds) but that doesn't seem instant and also seems like it's not very convenient for the server if a lot of users are on.
So, my question is: Is there any way I can live-update data to my users without having to constantly request new data and not having to use websockets?
I'd like to implement this with notifications and comments as well, so having a lot of ajax scripts requesting data every x amount of seconds doesn't seem like a good idea.