From be8275019f400b3d557bebff2fa033a42168ac59 Mon Sep 17 00:00:00 2001 From: Ethan Davidson <31261035+EthanThatOneKid@users.noreply.github.com> Date: Tue, 18 Aug 2026 15:04:03 -0700 Subject: [PATCH] docs: note backend maturity in self-host storage section Only @worlds/libsql ships a full SDK factory today; worlds-sqlite, worlds-postgres, and worlds-cloudflare are parked post-beta (raw stores or scaffold only). The self-host page previously presented libsql and postgres as equal picks. --- contribute/self-host.mdx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/contribute/self-host.mdx b/contribute/self-host.mdx index 240de95..147970e 100644 --- a/contribute/self-host.mdx +++ b/contribute/self-host.mdx @@ -32,7 +32,9 @@ the repository-specific setup. ## Storage backends Worlds storage drivers ship as standalone JSR packages. Pick the backend that -matches your persistence needs. +matches your persistence needs. Of the durable backend packages, only +`@worlds/libsql` ships a full SDK factory today; the other drivers +(worlds-sqlite, worlds-postgres, worlds-cloudflare) are parked post-beta. ### LibSQL / Turso @@ -56,7 +58,9 @@ database. [`@worlds/postgres`](https://jsr.io/@worlds/postgres) provides a PostgreSQL quad store and hybrid search index. It builds on the `pgvector` extension for vector -search, with tables created from `buildPostgresSchemaSql`: +search, with tables created from `buildPostgresSchemaSql`. The package is parked +post-beta and ships raw stores only; there is no `createPostgresSdk` factory +yet, so you assemble the stores yourself: ```typescript import postgres from "postgres";