I’ve heard PUT and POST requests should not be pipelined. Why ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
What this comes down to is Idempotence
Non-idempotent requests should not be pipelined, since the effects of
N > 1requests may produce a different result than a single request would do. This means thePOSTrequests should not be pipelined, but any non-idempotent method (just about any request other thanPOSTmethod) can safely be.See: