Jonas Breuer

Results 56 comments of Jonas Breuer

I would like to start some discussion on this topic. My current use case requires this, so now i'm checking if it makes more sense to use another client or...

I support deprecating the sync API. That makes sense. I'm also not sure about point 2. Making the client async is already a lot of work, supporting 2 different async...

In theory yes, but there is some more into this, for example the TCP sockets. I don't know if there is any abstraction for stuff like that. I only ever...

I think we probably can take a lot of stuff from the sqlx abstraction and actix-rt. That means the abstraction will not be a big part of the work. But...

I started to work on the async version... Porting the current client is a huge pain and causes a lot of overhead. I spent >25 hours, just trying to fix...

Thanks for the response! Can you give a more exact list on what you are implementing? While clicking through the base of the Java client, i found many missing parts....

Totally. I did not know that you started to work on the client again. I wanted to do a load of side features in the same move, because i would...

Please have a look at my #108 PR. If you see anything i missed, please tell me. Its a stupid 1:1 port from old sync to ne async. No functionality...

> Unscoped threads are a good use case for executing queries accross multiple nodes because the query threads continue running even after the result set has been passed back to...

Im trying to implement that splitting right now. There is one point that brings in a little complexity. How important is it to keep the order in the return vec?...