· Standard
T
llmstxt.info directory · Standard
Turso
Community listing
llms.txt reachable
AI Impact Score 80/100 · B
Turso provides structured information for AI assistants via an llms.txt file. Industry: Developer Tools. The website turso.tech provides its llms.txt at https://turso.tech/llms.txt. Listed since 25 August 2026.
llms.txt address
https://turso.tech/llms.txt
Under GDPR Art. 17 you can request the deletion of your data. Report a legal violation (Art. 16 DSA) →
llms.txt — current content
Open ↗
# Turso
> Turso is a SQLite-compatible database for every application — local, embedded, cloud-synced, or remote.
## Overview
Turso is a ground-up rewrite of SQLite with concurrent writes (MVCC), async I/O, and built-in cloud sync. It runs embedded in your application, as a remote cloud database, or both. Turso is a drop-in replacement for SQLite — your existing SQL, schema, and queries work unchanged.
- GitHub: https://github.com/tursodatabase/turso
- Documentation: https://docs.turso.tech
Features:
- **Concurrent writes** (MVCC) — multiple writers without "database is locked" errors
- **Full-text search** — Tantivy-powered FTS with BM25 ranking, highlighting, and boolean queries
- **Vector search** — native embedding storage and cosine similarity search
- **Turso Sync** — true local-first sync with explicit push/pull to Turso Cloud
- **Encryption at rest** — AES-256 per-database encryption
- **Change Data Capture (CDC)** — built-in audit logging of every mutation
- **Triggers and materialized views** — database-level automation
- **Multi-tenancy** — designed for thousands of lightweight databases (database-per-tenant)
## Which package should I use?
| Use case | TypeScript | Python |
| --- | --- | --- |
| **Local database** (embedded, on-device, offline) | `@tursodatabase/database` | `pyturso` |
| **Local database + cloud sync** (push/pull) | `@tursodatabase/sync` | `pyturso` (with sync) |
| **Remote access** (servers, Docker, serverless, edge — any over-the-wire) |
[…truncated]