I kept on reading expecting to see motion prediction, multiversion, or similar given the name and focus on games, but no. This is a totally normal database, designed for low latency and with support for WASM stored procedures. You can host your own server or they will rent you one.
Don't get me wrong, this looks very nice. It looks like a solid building block for persistent worlds in multiplayer games. You'll just have to do your lag masking netcode yourself.
I'm Tyler (guy in the video). We do not currently do lag compensation/client-side prediction for you, but you can do it. In BitCraft we implement it outside of SpacetimeDB.
However, we DO plan to add automatic client-side prediction as a feature for SpacetimeDB in the near-ish future! Because all your server-side logic is in Wasm modules, we plan to run an embedded version of SpacetimeDB to execute the server logic on the client. As long as the server and client agree on the changes to the data we can reconcile the transactions, otherwise we'll rollback. Notably, we can do this with only partial state on the client!
Coming from gamedev I was expecting it too for real multi-player RPGs, shooters, etc, or something fancy like simualtenous turn based gaming (which was done in the past).
Definitely something we're looking to tackle in the near future. Lag-compensation, client-side prediction, and alternative transport layers are all in the works!
This is an awesome project and an interesting use case for WASI.
Get rid of this though:
> This means that you can write your entire application in a single language, Rust, and deploy it as a single binary. No more microservices, no more containers, no more Kubernetes, no more Docker, no more VMs, no more DevOps, no more infrastructure, no more ops, no more servers.
Based on the description, it’s because you don’t get raw SQL access; they say the game logic is embedded directly into the database and you interact with it through stored procedures. All the rules are enforced there instead of whatever API endpoint you would normally use.
We are currently working on IMC (inter-module communication) which allows the database modules to act like persistent actors. They can pass messages between databases and create new databases as well. It's similar to Erlang/BEAM.
I kept on reading expecting to see motion prediction, multiversion, or similar given the name and focus on games, but no. This is a totally normal database, designed for low latency and with support for WASM stored procedures. You can host your own server or they will rent you one.
Don't get me wrong, this looks very nice. It looks like a solid building block for persistent worlds in multiplayer games. You'll just have to do your lag masking netcode yourself.
I'm Tyler (guy in the video). We do not currently do lag compensation/client-side prediction for you, but you can do it. In BitCraft we implement it outside of SpacetimeDB.
However, we DO plan to add automatic client-side prediction as a feature for SpacetimeDB in the near-ish future! Because all your server-side logic is in Wasm modules, we plan to run an embedded version of SpacetimeDB to execute the server logic on the client. As long as the server and client agree on the changes to the data we can reconcile the transactions, otherwise we'll rollback. Notably, we can do this with only partial state on the client!
Coming from gamedev I was expecting it too for real multi-player RPGs, shooters, etc, or something fancy like simualtenous turn based gaming (which was done in the past).
Definitely something we're looking to tackle in the near future. Lag-compensation, client-side prediction, and alternative transport layers are all in the works!
This is an awesome project and an interesting use case for WASI.
Get rid of this though:
> This means that you can write your entire application in a single language, Rust, and deploy it as a single binary. No more microservices, no more containers, no more Kubernetes, no more Docker, no more VMs, no more DevOps, no more infrastructure, no more ops, no more servers.
Don’t let your marketing team write your README.
There was an episode on the Developer Voices podcast about this some time ago.
https://overcast.fm/+ABBSPFBjze0
youtube link if you want to watch the interaction: https://www.youtube.com/watch?v=roEsJcQYjd8
Not open source.
Love it. This addresses a long persisting itch in the back of my mind.
I am interested to use this for implementing a communication platform like matrix or IRC.
Apparently the license only allows you to run one production instance though.
If the client connects to the database directly, how is access control or cheating handled?
UPDATE players SET gold = gold + 500 WHERE id = 12345;
Based on the description, it’s because you don’t get raw SQL access; they say the game logic is embedded directly into the database and you interact with it through stored procedures. All the rules are enforced there instead of whatever API endpoint you would normally use.
Mutations through SQL are disallowed for clients. They must update state via "reducers" (aka RPC calls to the Wasm module).
Why not fall back to simple GPL instead of a custom “AGPL plus linking exception“?
It prevents Google from using or adopting it internally. For some “militantly open source” projects, this can be a feature.
AFAIK Google allows neither GPL nor AGPL so that is not an argument for one over the other. GPL basically _is_ AGPL with a linker exception?
i don't see how a "militantly open source" project can be released under a (4-year!) BSL
I like the idea but how does one scale this?
We are currently working on IMC (inter-module communication) which allows the database modules to act like persistent actors. They can pass messages between databases and create new databases as well. It's similar to Erlang/BEAM.
Vertically, looks like. I didn't see any mention of scale tests or multiserver support.
Their initial launch video mentions using nodes for scaling
https://youtu.be/kzDnA_EVhTU?si=d5mFHpyOOk2Bzc4V