SpacetimeDB
SpacetimeDB copied to clipboard
Multiplayer at the speed of light
1. [x] Create a proposal to add `spacetime subscribe` command to the CLI. https://github.com/clockworklabs/SpacetimeDBPrivate/pull/806 2. Implement said proposal with details. 3. Use the command in the smoketests where necessary. cc...
It already allows `ReducerContext`. It should also allow other parameters, passed via `spacetime publish $db $p1 ... $pn`. The format of `$pi` is the same as in `spacetime call`.
``` Error: bad call_reducer signature for "__call_reducer__"; expected FuncSig { params: [I32, I32, I32, I64, I32], results: [I32] } got FuncSig { params: [I32, I32, I64, I32], results: [I32] }...
The purpose of this ticket and corresponding PR is the following: Currently some rows are inserted into system tables by the bootstrapping code. If we ever wanted to change the...
Depends on https://github.com/orgs/clockworklabs/projects/22/views/16?pane=issue&itemId=59358114 to specify exactly what this logic should be.
We do not currently track energy for queries and subscriptions. We should use both query compilation and execution time as proxies for energy. In particular we should pick a suitable...
Rather than this janky check that the type can be used as a sequence: https://github.com/clockworklabs/SpacetimeDB/blob/6e052cb8dc691adb0c894b5be68558676e246212/crates/bindings-macro/src/lib.rs#L565 let the sequence compatible types implement a trait and assert that it is implemented.
Right now: ``` WebSocketException: Unable to connect to the remote server System.Net.WebSockets.WebSocketHandle.ParseAndValidateConnectResponseAsync (System.IO.Stream stream, System.Net.WebSockets.ClientWebSocketOptions options, System.String expectedSecWebSocketAccept, System.Threading.CancellationToken cancellationToken) (at :0) System.Net.WebSockets.WebSocketHandle.ConnectAsyncCore (System.Uri uri, System.Threading.CancellationToken cancellationToken, System.Net.WebSockets.ClientWebSocketOptions options) (at...
Kurtis: A User raised a concern that they are getting CORS errors when attempting to use the TypeScript SDK and testnet. I am not sure what the resolution is to...
We've recently discovered that there's a post body maximum size of 2MB. We'd like to increase this value, but there are some security implications to doing this: https://docs.rs/axum/latest/axum/extract/index.html#request-body-limits So, another...