Arnaud Le Blanc

Results 60 comments of Arnaud Le Blanc

> Anyway, shouldnt you be able to detect all those settings from EM when provided We could definitely, but there is the question of the type stability: It can actually...

FWIW, I'm using https://github.com/arnaud-lb/promise/commit/90e6e350c0464961c032e196826bc509dfe1cc82 in production with [this tracer](https://gist.github.com/arnaud-lb/a2a5a5480bbd80013f756ff968282936) for years now, and it has successfully detected any unhandled rejection since then. Feel free to make a PR from the...

I have a preference for out/in as it's easier to remember than covariant/contravariant and also shorter to type/read. But since we already use covariant/contravariant, that it's the way to go...

Had exactly the same issue (froze after the same line). Resolved after downgrading from linux 5.18 to 5.15. May be related: https://bbs.archlinux.org/viewtopic.php?id=276699. The thread suggests workarounds without downgrading.

I guess that the algorithms are pretty standard, and that they work as intended. One is time efficient (but memory hungry), the other is memory efficient (and time hungry). If...

I've created a reproducer / demo here: https://github.com/sebastianbergmann/diff/pull/107 I've also tried `yetanotherape/diff-match-patch`: Unfortunately it uses too much memory.

Hi The log messages suggests to increase `receive.message.max.bytes`, but this seems odd that a response to `APIVERSION_QUERY` is so large. Do you know your Kafka server version ? What happens...

Thank you for this request. CONFIGURATION.md suggests that applications can/should read the default value of the `builtin.feature` setting to get the list of available features: https://github.com/edenhill/librdkafka/blob/b47da0e4eec900d9cb091d2f524e957505dbb513/CONFIGURATION.md?plain=1#L6 : Property | C/P...

Hi Did you try the [high level consumer](https://arnaud.le-blanc.net/php-rdkafka-doc/phpdoc/class.rdkafka-kafkaconsumer.html) + [RdKafka\ConsumerTopic::consumeBatch](https://arnaud.le-blanc.net/php-rdkafka-doc/phpdoc/rdkafka-consumertopic.consumebatch.html) ?

I would gladly accept help on this. Basically, we would create an API like this: ``` $instanceName = "somename"; if (!$rk = \RdKafka\Producer::getInstance($instanceName)) { $rk = new \RdKafka\Producer($conf, $instanceName); }...