提交 93f00b2a 编写于 作者: M Mr.doob

Editor: Logging how long it took to save to IndexedDB.

上级 786d570e
......@@ -54,12 +54,14 @@ var Storage = function () {
set: function ( data, callback ) {
var start = performance.now();
var transaction = database.transaction( [ 'states' ], 'readwrite' );
var objectStore = transaction.objectStore( 'states' );
var request = objectStore.put( data, 0 );
request.onsuccess = function ( event ) {
console.log( '[' + /\d\d\:\d\d\:\d\d/.exec( new Date() )[ 0 ] + ']', 'Saved state to IndexedDB.' );
console.log( '[' + /\d\d\:\d\d\:\d\d/.exec( new Date() )[ 0 ] + ']', 'Saved state to IndexedDB in ' + ( performance.now() - start ).toFixed( 2 ) + 'ms.' );
};
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册