mscdex

Results 571 comments of mscdex

When you say "idle timeout" are you referring to the `wait_timeout` value on the server-side? I am working on a [rewrite](https://github.com/mscdex/node-mariasql/tree/rewrite) and its keepalive functionality currently and would like to...

@gould @nicokaiser @zingaburga I just pushed support for both protocol-level pings and TCP keepalive to the [rewrite](https://github.com/mscdex/node-mariasql/tree/rewrite) branch. The protocol-level pings can be enabled by setting `pingInactive` to how many...

@not-implemented Right, that's a C++ assert and can't be handled by JS land. The C++ side of mariasql was simplified a lot, so I'm hoping the assertion error won't happen...

@not-implemented What version of node?

I generally leave out .gitignore, .npmignore, and other such files from my repos (and keep them local), so I'm +0 on it really...

Be aware that the behavior is being changed here with the use of `??` as it's now testing implicitly for `null` and `undefined` whereas previously it was checking for *any*...

[Benchmark CI run](https://ci.nodejs.org/view/Node.js%20benchmark/job/benchmark-node-micro-benchmarks/1046/console)

I think we should be adding something to the output (preferably in a "backwards-compatible" fashion) to indicate which group a particular configuration result is for, in order to remedy the...

Can't the `onread` feature of `net.Socket` already achieve the same goal?