Branislav Katreniak
Branislav Katreniak
Kenton suggested at some point to declare the nested types at namespaces level with `_` . It would make above example possible. ```cpp struct A; struct A_AA; struct B; struct...
I can reproduce this problem in tests. Calls to `await consumer.stop()` and to `await consumer.disconnect()` block for `maxWaitTime` passed to `kafka.consumer({...})` that defaults to 5s. By brief code review ......
The substituted parameter values inside prepared statements cause prepared statements to leak inside db. To release them, the db connection has to be closed. The db connections are typically closed...
Our workaround is to limit the number prepared statements per connection. The prepared statements are seldom measurable in a bigger application. We did not measure any difference. ``` options: {...