Multiple Ajax requests for same URL

Necko’s cache can only handle one writer per cache entry. So if you make multiple requests for the same URL, the first one will open the cache entry for writing and the later ones will block on the cache entry open until the first one finishes. There’s work ongoing to rearchitect the cache to remove this restriction.

Leave a Comment