-
Notifications
You must be signed in to change notification settings - Fork 10
/
stats.json.js
76 lines (76 loc) · 2.12 KB
/
stats.json.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
({
'read tests': [
{
a: 'initial test',
test: 'node example.js',
_: [
['2m20.460s', { first_run: true }], // TODO: re-test
['2m18s'],
]
},
{
a: 'after adding no_thumbs and no_cache to readdir',
test: 'node example.js',
_: [
['2m19.183s', { first_run: true }],
['2m17.394s']
]
},
{
a: 'after fixing an issue in ReadFileCacheFAO',
test: 'node example.js',
_: [
['3m16.212s', { first_run: true, oops: 'forgot to turn off log output' }],
['2m19.675s', { first_run: true }],
['2m9.703s'],
['2m6.277s'],
]
},
{
a: 'experiment with "infinite" directory tree cache ttl',
test: 'node example.js',
_: [
['2m9.931s', { first_run: true }],
['1m58.406s'],
]
},
{
a: 'performance of `ls node_modules` with last change',
test: 'ls node_modules',
_: [
['0m11.233s', { first_run: true }],
['0m11.235s', { first_run: true }],
]
},
{
a: 'fixing no_thumbs and no_cache',
test: 'ls node_modules',
_: [
['5.246s', { first_run: true }],
['5.090s'],
['4.915s'],
['5.256s'],
['4.858s'],
]
},
{
a: 'add missing Path->LocalUID association in readdir',
test: 'ls node_modules',
_: [
['0.790s', { first_run: true }],
['0.731s'],
['0.622s'],
['0.613s'],
]
},
{
a: 'test example express app again',
test: 'node example.js',
_: [
['14.503s', { first_run: true }],
['0.354s'],
['0.364s'],
]
}
]
})