This repository was archived by the owner on Apr 10, 2025. It is now read-only.

Description
We should only convert GETs into PURGEs and not touch other request methods,
because it is possible to have POSTs with response content-type as text/html
and these should not be turned into PURGEs. We should also add something our
documentation indicating that requests with non-GET HTTP methods should bypass
the cache.
As of now, PURGEs for POSTs should be effectively harmless 404s (assuming that
POSTs are bypassed while caching). But, it is unnecessary work as far as the
server is concerned.
Original issue reported on code.google.com by [email protected] on 26 Jul 2013 at 12:12