Rushmore Mushambi
Rushmore Mushambi
The Rust SDK already tries to reconnect automatically when the connection drops. This has always been supported. Do you know how I can reproduce the particular issue you are having?
@soundprojects So we are on the same page, I would like to clarify a couple of things:- 1. The Rust SDK [already supports](https://github.com/surrealdb/surrealdb/issues/5015#issuecomment-2444419774) automatically reconnecting to the server. It always...
Thanks for confirming @soundprojects! I have updated the feature request accordingly.
I'm currently working on [such an alternative](https://github.com/rushmorem/serde-content). It addresses a lot of the outstanding issues on `serde-value`.
Not everything is boxed. Only structs, enums and non-null options. Those are boxed because the type is self-referential in those variants. The internal Serde type is also [structured in a...
Initial version is [now out](https://crates.io/crates/serde-content).
What do you mean @vrurg?
Thanks for bringing up `#[serde(flatten)]` and `#[serde(skip)]` @Mingun. I plan to add [tests for Serde attributes](https://github.com/rushmorem/serde-content/pull/3). I will make sure to include those ones as part of the tests. Those...
I added a few attribute tests, just enough to confirm what I already suspected. The attributes have no bearing on `serde-content` since they rewrite the types before the serialiser is...
It's now possible on main to receive large responses from the database by increasing or disabling the max message size WebSocket limit. ```rust let ws_config = WebsocketConfig::default().max_message_size(max_size); let config =...