ydn.db
Version:
Javascript database library for IndexedDB, WebDatabase (WebSQL) and WebStorage (localStorage) storage mechanisms supporting version migration, advanced query and transaction workflow.
37 lines (36 loc) • 1.18 kB
HTML
<html>
<head>
<meta content="text/html; charset=UTF-8" http-equiv="content-type">
<title>Performance test - CRUD operations</title>
<script type="text/javascript" src="../../jsc/ydn.db-dev.js"></script>
<link href="perf.css" rel="stylesheet" type="text/css" />
</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-small.js"></script>
<script type="text/javascript" src="crud-multi.js"></script>
<script type="text/javascript" src="crud-index.js"></script>
</body>
</html>