Re: [ServiceWorker] Cache transactions & fixing `addAll` (#823)

> Multiple overlapping put()s will result in the last put() winning.

Does this mean:

```js
cache.put(request, response1);
cache.put(request, response2);
```

…response1 may overwrite response2 even though it was `.put` afterwards?

---
Reply to this email directly or view it on GitHub:
https://github.com/slightlyoff/ServiceWorker/issues/823#issuecomment-174240094

Received on Sunday, 24 January 2016 01:15:36 UTC