-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrange_fsfile.bench.ts
95 lines (85 loc) · 2.16 KB
/
range_fsfile.bench.ts
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
/**
* Benchmark tests for measuring the performance of range requests on
* `Deno.FsFile`. It appears the limited readable stream which implements the
* `.seek()` API outperforms or matches performance of a byte range transform
* stream.
*/
import { asLimitedReadableStream, RangeByteTransformStream } from "./range.ts";
const RANGE_BIG = {
start: 0,
end: 1_000_000,
};
const RANGE_DEEP = {
start: 860_000,
end: 1_000_000,
};
const RANGE_SMALL = {
start: 64_000,
end: 64_999,
};
Deno.bench({
name: "asLimitedReadableStream - big range",
async fn() {
const file = await Deno.open("./_fixtures/png-1mb.png");
const stream = asLimitedReadableStream(file, RANGE_BIG);
for await (const _chunk of stream) {
//
}
},
});
Deno.bench({
name: "RangeByteTransformStream - big range",
async fn() {
const file = await Deno.open("./_fixtures/png-1mb.png");
const stream = file.readable.pipeThrough(
new RangeByteTransformStream(RANGE_BIG),
);
for await (const _chunk of stream) {
//
}
},
});
Deno.bench({
name: "asLimitedReadableStream - deep range",
async fn() {
const file = await Deno.open("./_fixtures/png-1mb.png");
const stream = asLimitedReadableStream(file, RANGE_DEEP);
for await (const _chunk of stream) {
//
}
},
});
Deno.bench({
name: "RangeByteTransformStream - deep range",
async fn() {
const file = await Deno.open("./_fixtures/png-1mb.png");
const stream = file.readable.pipeThrough(
new RangeByteTransformStream(RANGE_DEEP),
);
for await (const _chunk of stream) {
//
}
},
});
Deno.bench({
name: "asLimitedReadableStream - small range",
async fn() {
const file = await Deno.open("./_fixtures/png-1mb.png");
const stream = asLimitedReadableStream(file, RANGE_SMALL);
for await (const _chunk of stream) {
//
}
},
});
Deno.bench({
name: "RangeByteTransformStream - small range",
async fn() {
const file = await Deno.open("./_fixtures/png-1mb.png");
const stream = file.readable.pipeThrough(
new RangeByteTransformStream(RANGE_SMALL),
);
for await (const _chunk of stream) {
//
}
},
});