Hi Michael,
I didn’t check how the client API works in details, but is it made in such a way that only one query at a time can be sent? Should I use a new Session instance for every single query sent to the server?
exactly, that’s the way our sessions work: If you want to run queries in parallel, you’ll have to create multiple sessions. In the use cases we are familiar with, this works out fine, because creating a new session is a pretty light-weight operation.
Hope this helps, Christian