
Ultimate access to all questions.
You manage an ecommerce application where customers can place, cancel, or modify orders. The backend order-processing system handles only one request at a time, and order volumes fluctuate significantly. To maintain seamless performance and ensure customer order update requests are executed in the exact sequence they were received, what solution should you implement?
A
Send the purchase and change requests over WebSockets to the backend.
B
Send the purchase and change requests as REST requests to the backend.
C
Use a Pub/Sub subscriber in pull mode and use a data store to manage ordering.
D
Use a Pub/Sub subscriber in push mode and use a data store to manage ordering.