-
-
Notifications
You must be signed in to change notification settings - Fork 630
/
Copy pathbench-insert-select.js
78 lines (70 loc) · 2.12 KB
/
bench-insert-select.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
'use strict';
const common = require('../test/common');
const connection = common.createConnection();
const table = 'insert_test';
const text = '本日は晴天なり';
connection.query(
[
`CREATE TEMPORARY TABLE \`${table}\` (`,
'`id` int(11) unsigned NOT NULL AUTO_INCREMENT,',
'`title` varchar(255),',
'PRIMARY KEY (`id`)',
') ENGINE=InnoDB DEFAULT CHARSET=utf8',
].join('\n')
);
function benchmarkInsert(numLeft, callback) {
connection.query(`INSERT INTO ${table} SET title="${text}"`, (err) => {
if (err) throw err;
if (numLeft > 1) benchmarkInsert(numLeft - 1, callback);
else callback();
});
}
function benchmarkInserts(n, cb) {
const numInsert = 10000;
const start = process.hrtime();
benchmarkInsert(numInsert, () => {
const end = process.hrtime();
const diff = common.hrdiff(start, end);
console.log(`${(numInsert * 1e9) / diff} inserts/sec`);
if (n > 1) benchmarkInserts(n - 1, cb);
else cb();
});
}
function benchmarkSelect(numLeft, numSelect, callback) {
connection.query(`select * from ${table} limit ${numSelect}`, (err) => {
if (err) throw err;
if (numLeft > 1) benchmarkSelect(numLeft - 1, numSelect, callback);
else callback();
});
}
function benchmarkSelects(n, size, cb) {
const numSelects = 100;
const start = process.hrtime();
benchmarkSelect(numSelects, size, () => {
const end = process.hrtime();
const diff = common.hrdiff(start, end);
console.log(
`${size} rows: ${(numSelects * 1e9) / diff} results/sec, ${(size * numSelects * 1e9) / diff} rows/sec`
);
if (n > 1) benchmarkSelects(n - 1, size, cb);
else cb();
});
}
module.exports = function (done) {
const testStart = process.hrtime();
benchmarkInserts(5, () => {
benchmarkSelects(5, 10000, () => {
benchmarkSelects(10, 1000, () => {
benchmarkSelects(2, 50000, () => {
const testEnd = process.hrtime();
console.log('total time: ', common.hrdiff(testStart, testEnd) / 1e9);
connection.end();
if (done) done();
});
});
});
});
};
if (require.main === module) {
module.exports();
}