Как измерить время, необходимое для запуска script от начала до конца?
start-timing
//CODE
end-timing
Как измерить время, необходимое для запуска script от начала до конца?
start-timing
//CODE
end-timing
EDIT: в январе 2011 года это было лучшее доступное решение. Другие решения (например, performance.now()
должны быть предпочтительны сейчас.
var start = new Date();
// CODE
var time = new Date() - start;
// time is the number of milliseconds it taken to execute the script
Вы также можете обернуть это в функцию:
function time_my_script(script) {
var start = new Date();
script();
return new Date() - start;
}
// call it like this:
time = time_my_script(function() {
// CODE
});
// or just like this:
time = time_my_script(func);
Если вы пытаетесь профилировать свой код, вы можете попробовать расширение Firebug, которое включает профилировщик javascript. Он имеет отличный пользовательский интерфейс для профилирования, но он также может быть программно реализован с помощью консоли api:
console.time('timer1');
// CODE
console.timeEnd('timer1'); // this prints times on the console
console.profile('profile1');
// CODE
console.profileEnd('profile1'); // this prints usual profiling informations, per function, etc.
Используйте performance.now()
вместо new Date()
. Это обеспечивает более точный и лучший результат. См. Этот ответ fooobar.com/questions/12547/...
Вот быстрая функция для работы как секундомер
var Timer = function(id){
var self = this;
self.id = id;
var _times = [];
self.start = function(){
var time = performance.now();
console.log('[' + id + '] Start');
_times.push(time);
}
self.lap = function(time){
time = time ? time: performance.now();
console.log('[' + id + '] Lap ' + time - _times[_times.length - 1]);
_times.push(time);
}
self.stop = function(){
var time = performance.now();
if(_times.length > 1){
self.lap(time);
}
console.log('[' + id + '] Stop ' + (time - _times[0]));
_times = [];
}
}
// called with
var timer = new Timer('process label');
timer.start(); // logs => '[process label] Start'
// ... code ...
timer.lap(); // logs => '[process label] Lap ' + lap_time
// ... code ...
timer.stop(); // logs => '[process label] Stop ' + start_stop_diff
Например: в начале файла JS пишите: performance.mark("start-script")
в конце файла JS пишите: performance.mark("end-script")
то вы также можете измерить его:
performance.measure("total-script-execution-time", "start-script", "end-script");
Это даст вам время, необходимое для выполнения всего выполнения скрипта.