What are the pros and cons of the web client interacting with the server through the message queue service and through ajax?

Most AFAIU javascript applications communicate with the server via ajax, which is a form of http. Suppose we were to create a javascript application that interacts with a server by exchanging messages through the Amazon Simple Queue Service or some other message queue service. What would be the pros and cons of this http approach?

+3
source share
1 answer

The single biggest difference between the AJAX single approach and something like SQS is persistance .

AJAX , , , "". SQS, , ( ).

, , , .

- , , . messsage, , , .

+1

All Articles