1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ext
Divy Srivastava c7153838ec
fix(ext/node): implement TCP.setNoDelay (#26263)
Fixes https://github.com/denoland/deno/issues/26177

The significant delay was caused by Nagel's algorithm + delayed ACKs in
Linux kernels. Here's the [kernel
patch](https://lwn.net/Articles/502585/) which added 40ms
`tcp_default_delack_min`

```
$ deno run -A pg-bench.mjs # main
Tue Oct 15 2024 12:27:22 GMT+0530 (India Standard Time): 42ms

$ target/release/deno run -A pg-bench.mjs # this patch
Tue Oct 15 2024 12:28:02 GMT+0530 (India Standard Time): 1ms
```

```js
import { Buffer } from "node:buffer";

import pg from 'pg'
const { Client } = pg
const client = new Client({
    connectionString: 'postgresql://postgres:postgres@127.0.0.1:5432/postgres'
})
await client.connect()

async function fetch() {
    const startPerf = performance.now();
    const res = await client.query(`select
        $1::int as int,
        $2 as string,
        $3::timestamp with time zone as timestamp,
        $4 as null,
        $5::bool as boolean,
        $6::bytea as bytea,
        $7::jsonb as json
      `, [
        1337,
        'wat',
        new Date().toISOString(),
        null,
        false,
        Buffer.from('awesome'),
        JSON.stringify([{ some: 'json' }, { array: 'object' }])
    ])
    console.log(`${new Date()}: ${Math.round(performance.now() - startPerf)}ms`)
}

for(;;) await fetch();
```
2024-10-15 14:47:12 +05:30
..
broadcast_channel refactor(ext/broadcastchannel): use concrete error type (#26105) 2024-10-12 08:20:17 -07:00
cache refactor(ext/cache): use concrete error type (#26109) 2024-10-12 09:15:10 -07:00
canvas refactor(ext/canvas): use concrete error type (#26111) 2024-10-12 10:00:35 -07:00
console fix(console/ext/repl): support using parseFloat() (#25900) 2024-10-14 15:04:18 -07:00
cron refactor(ext/cron): use concrete error type (#26135) 2024-10-12 14:23:49 -07:00
crypto 2.0.0 (#26063) 2024-10-08 07:37:28 -07:00
fetch perf(http): cache webidl.converters lookups in ext/fetch/23_response.js (#26256) 2024-10-14 23:25:18 -04:00
ffi refactor(ext/ffi): use concrete error types (#26170) 2024-10-14 15:05:49 -07:00
fs perf: use fast calls for microtask ops (#26236) 2024-10-14 12:31:51 +00:00
http perf(http): avoid clone getting request method and url (#26250) 2024-10-14 23:25:47 -04:00
io 2.0.0 (#26063) 2024-10-08 07:37:28 -07:00
kv 2.0.0 (#26063) 2024-10-08 07:37:28 -07:00
napi 2.0.0 (#26063) 2024-10-08 07:37:28 -07:00
net refactor(ext/tls): use concrete error types (#26174) 2024-10-12 16:53:38 -07:00
node fix(ext/node): implement TCP.setNoDelay (#26263) 2024-10-15 14:47:12 +05:30
tls refactor(ext/tls): use concrete error types (#26174) 2024-10-12 16:53:38 -07:00
url refactor(ext/url): use concrete error types (#26172) 2024-10-14 14:15:31 -07:00
web 2.0.0 (#26063) 2024-10-08 07:37:28 -07:00
webgpu fix(ext/webgpu): allow GL backend on Windows (#26206) 2024-10-14 11:10:27 +05:30
webidl 2.0.0 (#26063) 2024-10-08 07:37:28 -07:00
websocket refactor(ext/tls): use concrete error types (#26174) 2024-10-12 16:53:38 -07:00
webstorage refactor(ext/webstorage): use concrete error types (#26173) 2024-10-14 13:53:17 -07:00