UNPKG

ydn.db

Version:

Javascript database library for IndexedDB, WebDatabase (WebSQL) and WebStorage (localStorage) storage mechanisms supporting version migration, advanced query and transaction workflow.

44 lines (43 loc) 1.41 kB
<!DOCTYPE html> <html> <head> <meta content="text/html; charset=UTF-8" http-equiv="content-type"> <title>Performance test - CRUD operations</title> <script src="../../../closure-library/closure/goog/base.js"></script> <script type="text/javascript" src="../../../ydn-base/src/deps.js"></script> <script type="text/javascript" src="../../src/deps.js"></script> <script> goog.require('ydn.db.Storage'); goog.require('ydn.debug'); </script> <script type="text/javascript" src="../../src/config/conn.js"></script> <link href="perf.css" rel="stylesheet" type="text/css" /> <style> </style> </head> <body> <div> <div><label>Version: YDN-DB </label><span id="version"></span></div> <div><label>Mechanism: </label><span id="mechanism"></span></div> <h4>Performance results</h4> <table id="result-table"> <thead> <tr> <th rowspan="2">Description</th> <th colspan="6">Op / sec</th> </tr> <tr> <th>Serial atomic</th> <th>Serial single</th> <th>Serial multi</th> <th>Parallel atomic</th> <th>Parallel single</th> <th>Parallel multi</th> </tr> </thead> </table> </div> <script type="text/javascript" src="pref.js"></script> <script type="text/javascript" src="crud-multi.js"></script> </body> </html>