liujian

Results 13 comments of liujian

I saw the code of verx-sql-client and mysql implements, The easiest way to support this is to add a `lazyDecodeRow` option, and interface `Row` to add a getByteBuf entry ,...

This is a good question and I think there are a ways to avoid it.If the row is decoded,the reference counted will be decremented directly, If the row is not...

Or give an entry to handle a row,and release it in framework,like this: `accumulator.accept(container,row);` `if (lazyDecodeRow) {` ` ReferenceCountUtil.release(row);` `}`

Sounds great, adding an SPI to Command is a way to support this without affecting the current API.

This is indeed the case. The encode module and front-end api in our code do not have such a design, so it is not easy to add this support.

Looking forward to your reply. As I noted, is there any guarantee at the JVM level (like **responseFuture .get(timeout, unit)**) to reduce the risk of hangs in extreme network conditions?...

Thank you very much for your reply.The scenario where I use blockingUnaryCall is to heartbeat in microservice. I am very sure that the registered data is less than 5kb. There...