I'm building a web application where users can sign up, add twitters feeds that they want to follow and their stream will update as the feeds they're following receive new posts.
My go to platform is Laravel. However, I can't think of the best way to implement the live update aspect of the site.
I would use an AJAX function that is called periodically (every 30 seconds for example) but as the number of users increases this method as it's drawbacks.
I've looked into HTML5 Server Side Events but IE isn't supported unfortunately.
What would be the best way to implement this functionality within a Laravel App?
Thanks,
Nick