denoland / deno

A modern runtime for JavaScript and TypeScript.
https://deno.com
MIT License
97.34k stars 5.36k forks source link

`/webstorage/storage_local_setitem_quotaexceedederr.window.html` WPT runs for half a minute #11202

Open lucacasonato opened 3 years ago

lucacasonato commented 3 years ago

I assume there is some optimization potential in our localstorage implementation.

littledivy commented 3 years ago

The quota exceed check can be possibly optimized by caching the initial table size in a counter and incrementing bytes to the counter at every setItem() call instead of querying for size.

lucacasonato commented 3 years ago

@littledivy That doesn't work for multi process.