Engineering/Backend
Can a Timed-Out POST Request Still Succeed?
While studying retry strategies, I noticed that many explanations begin with a reasonable rule: retry an operation when the failure is temporary.The rule becomes harder to apply when the client cannot tell whether the operation failed.Suppose a client sends a POST request to create an order. The request times out before a response arrives. Retrying seems like the obvious next step. But what if t..