Re: [w3c/ServiceWorker] Allow Caching of POST requests (#977)

For a request-deferrer like case, it would be ideal to be able to `cache.put()` a POST (or any method) into a cache, and I don't care about matching, since they will be put into a special cache named "XXX_DEFERRED", and retrieval will be via `cache.keys().`  This would make it simple (just remember to `clone()`) to record and then retry failed requests.   Indexed Storage is overkill (and a real hassle) for this simple use case.  e.g., [ServiceWorke.rs Request Deferrer](https://serviceworke.rs/request-deferrer_service-worker_doc.html) example using localforage.js

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/ServiceWorker/issues/977#issuecomment-340857848

Received on Tuesday, 31 October 2017 18:26:48 UTC