惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Turso: A Rust Rewrite of SQLite. Setup Guide and Whether ...
ArshTechPro · 2026-06-21 · via DEV Community

ArshTechPro

If you have spent any time in the SQLite-adjacent corner of GitHub lately, you have probably seen the name Turso pop up. The project Turso describes itself as an in-process SQL database written in Rust that is compatible with SQLite.

This post walks through what the project actually is, how to get it running locally and in the cloud, and an honest take on whether you should bother adopting it right now.

First, clear up the naming confusion

Before touching any code, it helps to know there are three related but different things, and mixing them up is the most common source of confusion in the community:

  • libSQL: Turso's original project, a fork of SQLite written in C. It is production ready today and currently powers Turso Cloud.
  • Turso (the database engine): The project at the GitHub link above. A clean-room rewrite of SQLite in Rust, started as a side project called "Limbo." It is currently in beta and is explicitly positioned as the successor to libSQL, not a side experiment.
  • Turso Cloud: The managed, hosted database-as-a-service product built by the same company. It currently runs on libSQL, with the Rust engine gradually being rolled into it.

If you just want a managed SQLite-compatible database in production today, libSQL plus Turso Cloud is the safer starting point. If you want to try the next-generation engine itself, that is the tursodatabase/turso repo this article focuses on.

What's actually in it for developers

This is the part most setup tutorials skip, so here is the practical pitch:

  • It still talks SQLite. Same SQL dialect, same file format, same C API surface where practical. If you know SQLite, you already mostly know Turso.
  • Concurrent writes. SQLite's biggest historical complaint is its single-writer lock. Turso ships an experimental MVCC engine with BEGIN CONCURRENT, letting multiple writers commit without blocking each other on simple cases.
  • Async by design. The engine is built around asynchronous I/O (including Linux io_uring), instead of bolting async behavior on top of a synchronous core the way most SQLite drivers have to.
  • Native vector search. Built-in approximate vector search for embeddings and RAG-style workloads, no extension required.
  • Change Data Capture (CDC). Real-time tracking of every change made to the database, which is the backbone of Turso's newer sync story.
  • Full-text search, powered by the tantivy library, again without an extension.
  • Encryption at rest and incremental view maintenance (via DBSP), both still marked experimental.
  • Multi-language support out of the box: official packages for Rust, JavaScript/TypeScript, Python, Go, with more community drivers (PHP/Laravel, .NET) appearing in the ecosystem.
  • A genuinely open contribution model. Unlike SQLite's core, which uses a closed test suite, Turso is built with public deterministic simulation testing and fuzzing against SQLite's own bytecode output, specifically so outside contributors can verify their changes.

In short: if you have ever wanted SQLite with safer memory handling, real concurrent writes, and vector search baked in, this project is aimed squarely at you.

Setting it up locally

1. Install the CLI

curl --proto '=https' --tlsv1.2 -LsSf \
  https://github.com/tursodatabase/turso/releases/latest/download/turso_cli-installer.sh | sh

Windows users can use the PowerShell installer linked from the releases page instead.

2. Launch the shell

tursodb

This drops you into an interactive shell connected to a transient in-memory database:

turso> CREATE TABLE users (id INT, username TEXT);
turso> INSERT INTO users VALUES (1, 'alice');
turso> INSERT INTO users VALUES (2, 'bob');
turso> SELECT * FROM users;
1|alice
2|bob

Use .open FILENAME inside the shell if you want a persistent file instead of an in-memory database.

3. Prefer Docker or building from source?

# build and run the dev version
cargo run

# or with Docker
make docker-cli-build && make docker-cli-run

4. Pick a language binding

Rust:

cargo add turso

let db = Builder::new_local("sqlite.db").build().await?;
let conn = db.connect()?;
let res = conn.query("SELECT * FROM users", ()).await?;

JavaScript/TypeScript:

npm install @tursodatabase/database

import { connect } from '@tursodatabase/database';
const db = await connect('sqlite.db');
const stmt = db.prepare('SELECT * FROM users');
const users = stmt.all();

Python:

uv pip install pyturso

import turso
con = turso.connect("sqlite.db")
cur = con.cursor()
res = cur.execute("SELECT * FROM users")
print(res.fetchone())

Go:

go get turso.tech/database/tursogo

conn, _ := sql.Open("turso", "sqlite.db")
defer conn.Close()

That's the entire local setup. No server, no daemon, no config file: it runs in-process exactly like SQLite always has.

Setting up sync to the cloud

If you want a local-first app that stays in sync with a remote primary, Turso's newer sync package is the relevant piece:

npm install @tursodatabase/sync

import { connect } from "@tursodatabase/sync";

const db = await connect({
  path: "./my-app.db",
  url: "libsql://your-db.turso.io",
  authToken: "your-token",
});

You will need a Turso Cloud database and auth token for the url and authToken fields, both available through the turso CLI or the Turso dashboard. This sync layer is what replaces libSQL's older "embedded replicas" feature, and the project's own team now recommends it over the legacy approach for any new sync work, citing faster replica bootstrap and lower bandwidth use thanks to the async, page-level sync protocol.

The honest caveats

The repository itself is upfront about this, and it is worth repeating rather than glossing over: this software is in beta. The maintainers explicitly warn that it may contain bugs and unexpected behavior, and they recommend caution with production data and proper backups.

A few specifics worth knowing before you commit to it:

  • MVCC has real limitations today. Indexes cannot currently be created on MVCC-enabled databases, and the entire dataset is eagerly loaded into memory on first access, so very large databases can be slow to start and memory-hungry.
  • Query result ordering isn't guaranteed to match SQLite in every case, which can matter if your tests or application logic implicitly depend on row order.
  • Several headline features are explicitly experimental: encryption at rest, incremental computation, and multi-process WAL coordination all carry that label in the project's own documentation.
  • libSQL is still the production recommendation for most things. The maintainers say plainly that libSQL is production ready while the Rust engine is not, even though it is evolving quickly.

None of this is a knock against the project. It is a young, fast-moving rewrite being built in the open, with public fuzzing against SQLite's own bytecode output as a compatibility check. That is a genuinely rigorous approach. It just means "beta" is not a formality here.

Is it worth a try?

For side projects, prototypes, and anything where you can tolerate some rough edges, yes, it is worth trying. The setup cost is close to zero: one shell script, no servers, and your existing SQLite knowledge mostly transfers directly. If your workload involves frequent concurrent writes, embeddings and vector search, or you simply want to watch where SQLite is heading next, this is a good time to kick the tires.

A reasonable way to think about it: Turso is not trying to be "yet another database." It is trying to answer a fairly specific question, whether SQLite's simplicity can be carried forward into a memory-safe, async-native, concurrent-write world without losing what made SQLite SQLite.