Open
Bug 1610208
Opened 5 years ago
Updated 2 years ago
Repeated URL parsing overhead in Network panel
Categories
(DevTools :: Netmonitor, defect, P3)
DevTools
Netmonitor
Tracking
(Not tracked)
NEW
People
(Reporter: Harald, Unassigned)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
(deleted),
image/png
|
Details |
Typical use case of loading many requests at once, like https://firefox-devtools-log-a-lot.glitch.me/
URL constructor
makes 1.7% of all samples, which is impressive for a parsing tool. It parses URLs repeatdably just to extract basename, path, scheme, query, host, etc.
Caching the URLs would some most of it, but should be done in a leak-free way.
Reporter | ||
Comment 1•5 years ago
|
||
Here is a profile for it https://perfht.ml/2NTRClv recorded with netOop
on https://firefox-devtools-log-a-lot.glitch.me/
URL's self-time is 1.4% of the profile (Console's messages
reducer whooping 9%, tracked in bug 1606740)
Updated•2 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•