Turso
London, CA · Founded 2021 · 22 employees on LinkedIn · 5 known investors
Find your way into Turso
332 people in our graph share verified history with the Turso team — schools, employers, funds. One of them is your warm intro.
Turso is a database engine built as a Rust rewrite of SQLite, adding concurrent writes, native vector search, cloud-native replication, and browser/on-device support via WebAssembly. It targets developers building AI agents, multi-tenant, and local-first applications that need to spin up large numbers of lightweight, always-on databases.
Also known as Turso Database · Turso, Inc
Founders & leadership
Turso was founded in 2021 by Glauber Costa.

Investors · 5
Funding
SEC filings, press & company announcements- Undisclosed amountSeedApr 2025Source ↗
Source: company announcements and press reports — follow each round's link for the claim.
Company profile
researched Aug 2026Turso develops an in-process SQL database written in Rust that is compatible with SQLite's SQL dialect, file format and C API, and is distributed under the MIT license. The engine is a ground-up rewrite of SQLite positioned as a drop-in replacement, adding concurrent writes through multi-version concurrency control (BEGIN CONCURRENT), native vector search, change data capture, asynchronous I/O using Linux io_uring, encryption at rest, and cross-platform support for Linux, macOS, Windows and browsers via WebAssembly. The project describes itself as a virtual machine in the style of SQLite's VDBE that compiles SQL into bytecode, allowing multiple SQL frontends on one core; SQLite is the primary frontend and an experimental Postgres frontend with its own dialect and wire protocol has been added.
Alongside the open-source engine, the company operates Turso Cloud, a managed service for creating large numbers of SQLite-compatible databases accessible over the network or synced to devices. Cloud features include replication and sync, copy-on-write branching, usage analytics, team access controls, per-database encryption with a bring-your-own-key model, and a Platform API and CLI for programmatic management. The central architectural premise is that a database is a file rather than a long-running process, so databases are always on with no cold start and an idle database costs only storage, making it practical to give every user, tenant or AI agent its own database.
The products are used for AI agent memory and state, per-tenant SaaS isolation, edge applications with low-latency reads, local-first and offline-capable mobile, desktop and IoT apps, and on-device retrieval-augmented generation. Client SDKs and bindings span Rust, JavaScript/TypeScript, Python, Go, Java, .NET, WebAssembly, Ruby and Rails, PHP and Laravel, Swift, Kotlin/Android, Flutter and React Native.
Founding story
Turso was founded by CEO Glauber Costa and CTO Pekka Enberg, who met while working on the Linux kernel. Costa previously worked on virtualization, storage and containers at IBM and Red Hat, spent nearly a decade at ScyllaDB as VP of Field Engineering and designing core database features, and was a Staff Engineer at Datadog where he authored the Glommio Rust async executor. Enberg was an early employee at ScyllaDB and a former Linux kernel maintainer working on memory management and virtualization. The company's mascot, Iku, is named after Iku-Turso, a Finnish mythological sea creature.
Business model
Turso publishes an open-source, MIT-licensed database engine that can be self-hosted, and monetizes a managed offering, Turso Cloud, in which the company handles infrastructure, scaling and security for hosted databases. Pricing referenced in coverage of the seed round included a free allowance of 500 databases and a paid tier starting at $29 per month.
Subscription pricing for the managed Turso Cloud service, with a free tier and paid plans starting from $29 per month as described at the time of the seed announcement; the self-hosted database engine is free and open source under the MIT license.
Traction
The main tursodatabase/turso repository lists roughly 24,000 stars, about 1,300 forks and more than 19,500 commits, while the libSQL fork of SQLite lists about 17,200 stars; the organization maintains 61 public repositories including agentfs, client libraries and the Turso CLI. The project states it runs in production at multiple organizations, and named users referenced on the company site include Adaptive, Kin, Prisma and Val Town.
Latest developments
Recent additions to the database include an experimental Postgres frontend covering dialect and wire protocol, change data capture, full-text search via Tantivy, encryption at rest, incremental view maintenance using DBSP, and multi-process WAL coordination through a .tshm sidecar, with approximate vector indexing on the roadmap. Company repositories including the core database, libSQL, documentation, CLI and an MCP plugin for connecting AI agents to Turso Cloud were updated through August 2026.
▸Full profile — market position, technology, go-to-market, geography, history, risks & controversies
Market position
Turso positions itself against classical SQLite, which it extends with concurrent writes, native vector search and a first-party cloud, and against client-server systems such as PostgreSQL and MySQL, which it contrasts with its file-per-database, many-database architecture. The company frames a longer-term ambition of being to databases what LLVM is to compilers, with one core and many SQL frontends. Public endorsements on its site come from executives at Vercel, Spice AI, Prisma, Val Town, Adaptive and Kin.
Distinguishing elements cited by the company include treating each database as a file rather than a process, which removes cold starts and scale-to-zero behavior and makes idle databases cost only storage; native vector search without extensions; MVCC concurrent writes not available in classical SQLite; a Rust implementation with async-first I/O; browser execution via WebAssembly and OPFS; instant metadata-only branching; and full backwards compatibility with the SQLite dialect, file format and C API.
Technology
The database is written in Rust and compiles SQL into bytecode executed by a VDBE-style virtual machine, a design the project uses to support multiple SQL frontends on a single core. Capabilities include MVCC-based concurrent writes via BEGIN CONCURRENT, built-in vector search with exact search and vector manipulation (with approximate vector indexing on the roadmap), change data capture, asynchronous I/O with io_uring on Linux, extended ALTER and faster schema changes, and browser execution through WebAssembly and OPFS. Experimental work covers a Postgres dialect and wire protocol, encryption at rest, incremental view maintenance and query subscriptions using DBSP, full-text search based on the Tantivy library, and multi-process WAL coordination through a .tshm sidecar. In Turso Cloud, durability is provided by Amazon S3 and S3 Express: database files are split into 128 kB segments grouped into generations, the write-ahead log is persisted to S3 Express before a transaction is acknowledged, branching is a metadata-only copy-on-write operation, and replicas fetch segments lazily so a destination can serve queries before the full file arrives.
Go-to-market
Open-source distribution through the tursodatabase GitHub organization and package registries (cargo, npm, pip/uv, go get, Homebrew), a CLI installer and interactive shell, extensive language SDKs and quickstart documentation, a free tier for Turso Cloud, and community channels on Discord, Twitter and LinkedIn. A Turso Cloud MCP plugin connects AI coding agents to the service.
Developers and companies building AI agents, multi-tenant SaaS platforms, edge applications, mobile and IoT software, and local-first or offline-capable apps that require per-user, per-tenant or per-agent database isolation and on-device retrieval workloads.
Geography
The company describes itself as technically San Francisco based but operating as a globally distributed remote organization spanning four continents, with twelve countries and nine time zones represented. Turso Cloud supports replication across global regions for edge deployments.
History
The engine originated around libSQL, an open source and open contribution fork of SQLite maintained by the company, and evolved into Turso Database, a ground-up rewrite of SQLite in Rust. The project has since expanded from a SQLite-compatible engine into a multi-frontend virtual machine, adding an experimental Postgres dialect and wire protocol, while the commercial Turso Cloud service provides managed hosting, replication and sync. A $7M seed round was announced in April 2025.
Risks & controversies
The core embedded database engine and several of its capabilities are labeled beta or experimental, including the Postgres frontend, encryption at rest, incremental computation, full-text search and multi-process WAL coordination, and the project's FAQ addresses where it stands on the path to a 1.0 release. Concurrent write support and conflict resolution for offline sync are described in places as forthcoming rather than generally available.
Compiled by commissioned research from 8 cited public sources — announcements, filings, and press listed under research sources below.
Key figures
latest reportedCompany-reported or press-reported figures, each dated to when it was claimed — not independently audited.
Timeline · 2
launches, deals, and filingsThe Turso Database repository describes an experimental Postgres frontend, adding Postgres SQL dialect and wire protocol support alongside the primary SQLite frontend, positioning the engine as a multi-frontend virtual machine.
Turso announced a $7,000,000 seed funding round to expand its engineering team, fund research and development, and accelerate work on its open source distributed database built on libSQL, the open contribution fork of SQLite.
$7M source ↗
Dated company events from announcements, filings, and press; legal rows summarize public dockets and regulator releases.
In the news
▸Research sources · 8
primary sources listed
- Tursoturso.tech · web
8 public sources were cited for this profile; the first-party ones are listed here.
Frequently asked questions
- What does Turso do?
- Turso is an open-source, SQLite-compatible database written in Rust, plus a managed cloud for running millions of small databases.
- Who founded Turso?
- Turso was founded by Glauber Costa in 2021.
- Who are Turso's investors?
- Turso's investors include First Star Ventures, Mango Capital, Norwest Venture Partners, Preston-Werner Ventures, Essence Venture Capital.
- Where is Turso headquartered?
- Turso is headquartered in London, CA.




