FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node/benchmark/http/chunked.js at master · anchnk/node · GitHub
anchnk
/
node
Public
forked from
nodejs/node
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
node
/
benchmark
/
http
/
chunked.js
Copy path
More file actions
More file actions
Latest commit
History
History
History
41 lines (36 loc) · 976 Bytes
Breadcrumbs
node
/
benchmark
/
http
/
chunked.js
Copy path
File metadata and controls
41 lines (36 loc) · 976 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
// When calling .end(buffer) right away, this triggers a "hot path"
// optimization in http.js, to avoid an extra write call.
//
// However, the overhead of copying a large buffer is higher than
// the overhead of an extra write() call, so the hot path was not
// always as hot as it could be.
//
// Verify that our assumptions are valid.
'use strict'
;
var
common
=
require
(
'../common.js'
)
;
var
bench
=
common
.
createBenchmark
(
main
,
{
n
:
[
1
,
4
,
8
,
16
]
,
len
:
[
1
,
64
,
256
]
,
c
:
[
100
]
}
)
;
function
main
(
conf
)
{
const
http
=
require
(
'http'
)
;
var
chunk
=
Buffer
.
alloc
(
conf
.
len
,
'8'
)
;
var
server
=
http
.
createServer
(
function
(
req
,
res
)
{
function
send
(
left
)
{
if
(
left
===
0
)
return
res
.
end
(
)
;
res
.
write
(
chunk
)
;
setTimeout
(
function
(
)
{
send
(
left
-
1
)
;
}
,
0
)
;
}
send
(
conf
.
n
)
;
}
)
;
server
.
listen
(
common
.
PORT
,
function
(
)
{
bench
.
http
(
{
connections
:
conf
.
c
}
,
function
(
)
{
server
.
close
(
)
;
}
)
;
}
)
;
}
Back
|
FazBrowse Home
|
New Git URL