<!--your preparation HTML code goes here-->
/*your preparation JavaScript code goes here
To execute async code during the script preparation, wrap it as function globalMeasureThatScriptPrepareFunction, example:*/
async function globalMeasureThatScriptPrepareFunction() {
// This function is optional, feel free to remove it.
// await someThing();
}
var page_view_navigate, page_view_reload, page_view_back_forward;
var type = performance.getEntriesByType('navigation')[0].type;
var navigationType = function(type) {
if (type === 'navigate') {
page_view_navigate = 1;
return '0';
} else if (type === 'reload') {
page_view_reload = 1;
return '1';
} else if (type === 'back_forward') {
page_view_back_forward = 1;
return '2';
} else {
return '255';
}
};
var page_reload = navigationType(type);
var getNavigationType = function () {
var type = performance.getEntriesByType('navigation')[0].type;
switch (type) {
case 'navigate':
return { pageViewNavigate: 1, value: '0' };
case 'reload':
return { pageViewReload: 1, value: '1' };
case 'back_forward':
return { pageViewBackForward: 1, value: '2' };
default:
return { value: '255' };
}
};
var navigationInfo = getNavigationType();
var page_view_navigate = navigationInfo.pageViewNavigate;
var page_view_reload = navigationInfo.pageViewReload;
var page_view_back_forward = navigationInfo.pageViewBackForward;
var page_reload = navigationInfo.value;
var page_view_navigate, page_view_reload, page_view_back_forward;
var navigationType = function() {
try {
var type = performance.getEntriesByType('navigation')[0].type;
if (type === 'navigate') {
page_view_navigate = 1;
return '0';
} else if (type === 'reload') {
page_view_reload = 1;
return '1';
} else if (type === 'back_forward') {
page_view_back_forward = 1;
return '2';
} else {
return '255';
}
} catch (error) {
return '255';
}
};
var page_reload = navigationType();
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
actual | |
future | |
direct |
Test name | Executions per second |
---|---|
actual | 2265627.2 Ops/sec |
future | 2279480.5 Ops/sec |
direct | 2283240.0 Ops/sec |
The provided benchmark examines the performance of two different implementations of a function that determines the type of navigation event on a webpage using the performance.getEntriesByType('navigation')
API. This API provides information about navigation events, such as whether the user navigated to the page for the first time, reloaded it, or navigated forwards/backwards in the page history.
Actual Test Case:
var type = performance.getEntriesByType('navigation')[0].type;
var navigationType = function(type) {
if (type === 'navigate') {
page_view_navigate = 1;
return '0';
} else if (type === 'reload') {
page_view_reload = 1;
return '1';
} else if (type === 'back_forward') {
page_view_back_forward = 1;
return '2';
} else {
return '255'; // Unknown type
}
};
var page_reload = navigationType(type);
if-else
chain to check the navigation type. It has side effects by incrementing counters for page views based on the navigation type.Futuro Test Case:
var getNavigationType = function () {
var type = performance.getEntriesByType('navigation')[0].type;
switch (type) {
case 'navigate':
return { pageViewNavigate: 1, value: '0' };
case 'reload':
return { pageViewReload: 1, value: '1' };
case 'back_forward':
return { pageViewBackForward: 1, value: '2' };
default:
return { value: '255' }; // Unknown type
}
};
switch
statement to identify the navigation type and returns an object encapsulating both the type and a corresponding value.Actual (If-Else) Implementation:
Futuro (Switch) Implementation:
if-else
chain might be more optimized in this scenario, perhaps due to the smaller overhead relative to object creation in the switch
case.Performance Issues: It's essential to note that performance can be highly context-dependent. Depending on browser optimizations and the specific usage pattern in an actual application, differences in performance may vary.
Libraries: This benchmark does not utilize any external libraries; rather, it leverages native browser APIs provided by the JavaScript environment.
Alternatives:
In conclusion, when developing performance-sensitive features, it's critical to vertically benchmark different approaches, as nuances in implementation can lead to significant differences in execution speed and maintainability.