Results 56 comments of SSebo

@1c3t3a @milandekruijf maybe we should add some trace log.

@1c3t3a I would like to help, here is my PR #217

@1c3t3a I found this in socket.io docs https://socket.io/docs/v4/namespaces/

@david-sailplan https://github.com/1c3t3a/rust-socketio/blob/4ac27c7158a89375c503164857d86b1a1167116c/socketio/src/socket.rs#L105-L109 currently is limit to only two params, L108 accept a string, so there is a tricky way `socket .emit("foo", "bar1\",\"bar2\", \"bar3")`, you can have a try.

> @SSebo is there currently a better way to do this using "binary data/attachments"? > > I know your todo list is probably long, but a proper interface for encoding...

#249 I made a PR @david-sailplan @syshriki9 You can have a try.

@sunng87 Should some logic be added here? like parsing sql to see if it is `PREPARED` statement, then cache `connection-session` scope, when meet `EXECUTE` statement, find in cache then execute?...

@MichaelScofield This issue is dependent on https://github.com/GreptimeTeam/greptimedb/issues/600, right?

> @SSebo yes, part of it. The session crate was introduced in [this PR](https://github.com/GreptimeTeam/greptimedb/pull/672) already, I think prepared stmt can be stored in the `QueryContext` now. Good job! you can...