Skip to content

Commit

Permalink
Added transaction as category
Browse files Browse the repository at this point in the history
  • Loading branch information
Parashuram committed Apr 29, 2013
1 parent 4585b13 commit 8ed7dbd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions perf/index.html
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>IndexedDB Performance Test cases</title>
<link href="../demoer/bootstrap-combined.min.css" rel="stylesheet"/>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="main.css">
<script type="text/javascript" src = "//nparashuram.com/IndexedDBShim/dist/IndexedDBShim.js"></script>
</head>
Expand Down Expand Up @@ -265,7 +265,7 @@ <h4>
<!--/.fluid-container-->

<script src="../demoer/jquery.min.js"></script>
<script src="../demoer/bootstrap.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
<script src="../demoer/beautify.js"></script>
<script src="//www.google.com/jsapi"></script>
<script src="//nparashuram.com/jquery-indexeddb/dist/jquery.indexeddb.js" ></script>
Expand Down
2 changes: 1 addition & 1 deletion perf/tests/10_TransactionReadWriteIsolation.js
@@ -1,6 +1,6 @@
(function(s) {
s['Read and Write transaction isolation'] = {
category :'ObjectStore',
category :'Transaction',
desc : 'Should read and write operations be in the same transction, or be in different transactions',
_bTestKey:'agt1YS1wcm9maWxlcnINCxIEVGVzdBiJ8KIUDA',
onStart: function(cb, status) {
Expand Down
2 changes: 1 addition & 1 deletion perf/tests/3_TransactionRead.js
@@ -1,6 +1,6 @@
(function(s) {
s['Transaction based on Read'] = {
category: 'ObjectStore',
category: 'Transaction',
desc: 'Should read requests be queued in a single transaction, or will it be faster to open multiple transactions and read in batches',
_bTestKey: 'agt1YS1wcm9maWxlcnINCxIEVGVzdBjIjagUDA',
onStart: function(cb, status) {
Expand Down
2 changes: 1 addition & 1 deletion perf/tests/4_TransactionWrite.js
@@ -1,6 +1,6 @@
(function(s) {
s['Transaction based on Write'] = {
category: 'ObjectStore',
category: 'Transaction',
desc : 'Is it faster to queue all write requests in one transaction, or batch write requests in multiple transactions opening in a loop',
_bTestKey: 'agt1YS1wcm9maWxlcnINCxIEVGVzdBjDk6QUDA',
onStart: function(cb, status) {
Expand Down

0 comments on commit 8ed7dbd

Please sign in to comment.