Even though working on PHP for so long, recently came to know about long polling, otherwise I was sending periodic ajax.
It is understood that sending periodic ajax consumes bandwidth ( Considering the case if site have thousands of users). As well server remains busy to serve periodic ajax requests.
Advantage of long polling is that it drastically reduces the bandwidth as ajax responses only when there is change, Unless ajax remains open. However server need to keep on working ( kind of while loop until false condition) until some changes has happened.
My question is, In this type of technique, server has to incur load. Wont it affect the say way as periodic ajax when there are thousands of uses?
Sorry If I am wrong.