forked from sql-js/sql.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbenchmark.js
60 lines (48 loc) · 1.5 KB
/
benchmark.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// js -m -n -e "load('sql.js')" benchmark.js
var then = Date.now();
function TIME(msg) {
var now = Date.now();
print(msg + ' : took ' + (now - then) + ' ms');
then = now;
}
var db = SQL.open();
function report(all) {
for (var j = 0; j < all.length; j++) {
var data = all[j];
for (var i = 0; i < data.length; i++) {
print(data[i].column + ' = ' + data[i].value + '\n');
}
}
}
function RUN(cmd) {
report(db.exec(cmd));
}
TIME("'startup'");
RUN("CREATE TABLE t1(a INTEGER, b INTEGER, c VARCHAR(100));");
TIME("create table");
RUN("BEGIN;");
// 25000 INSERTs in a transaction
for (var i = 0; i < 5000; i++) {
RUN("INSERT INTO t1 VALUES(1,12345,'one 1 one 1 one 1');");
RUN("INSERT INTO t1 VALUES(2,23422,'two two two two');");
RUN("INSERT INTO t1 VALUES(3,31233,'three three 33333333333 three');");
RUN("INSERT INTO t1 VALUES(4,41414,'FOUR four 4 phor FOUR 44444');");
RUN("INSERT INTO t1 VALUES(5,52555,'five 5 FIVE Five phayve 55 5 5 5 5 55 5');");
}
TIME("25,000 inserts");
RUN("COMMIT;");
TIME("commit");
// Counts
RUN("SELECT count(*) FROM t1;");
RUN("SELECT count(*) FROM t1 WHERE a == 4");
RUN("SELECT count(*) FROM t1 WHERE b > 20000 AND b < 50000;");
RUN("SELECT count(*) FROM t1 WHERE c like '%three%';");
TIME("selects");
// Index
RUN("CREATE INDEX iiaa ON t1(a);");
RUN("CREATE INDEX iibb ON t1(b);");
TIME("create indexes");
RUN("SELECT count(*) FROM t1 WHERE a == 4");
RUN("SELECT count(*) FROM t1 WHERE b > 20000 AND b < 50000;");
TIME("selects with indexes");
db.close();