I have project for managing sport tournaments. It is written in PHP / Laravel. I need to publish match results on webpage asynchronously ("online"), while the tournament is running. I cannot decide, which way of communication is more suitable for my situation. Periodic ajax requests (e.g. 1 request per 10 seconds) or WebSockets? Could you please advise me? Could you please also mention some pros & cons of both ways?
Thank you very much.