two_handfuls a day ago

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.

  • cloutiertyler 20 hours ago

    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!

  • malkia 21 hours ago

    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).

    • cloutiertyler 20 hours ago

      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!

femiagbabiaka a day ago

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.

overu589 a day ago

Love it. This addresses a long persisting itch in the back of my mind.

Levitating a day ago

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.

gcr a day ago

If the client connects to the database directly, how is access control or cheating handled?

UPDATE players SET gold = gold + 500 WHERE id = 12345;

  • apetresc a day ago

    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.

  • cloutiertyler 20 hours ago

    Mutations through SQL are disallowed for clients. They must update state via "reducers" (aka RPC calls to the Wasm module).

47282847 a day ago

Why not fall back to simple GPL instead of a custom “AGPL plus linking exception“?

  • gcr a day ago

    It prevents Google from using or adopting it internally. For some “militantly open source” projects, this can be a feature.

    • 47282847 7 hours ago

      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?

    • cAtte_ 21 hours ago

      i don't see how a "militantly open source" project can be released under a (4-year!) BSL

laddad a day ago

I like the idea but how does one scale this?

  • cloutiertyler 20 hours ago

    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.