Turso’s cover photo
Turso

Turso

Software Development

The next evolution of SQLite

About us

Turso is a Rust-based, cloud-native rewrite of SQLite, built for modern, data-driven applications. It brings async performance, improved concurrency, and the reliability of advanced testing, with the openness of true community collaboration.

Website
https://turso.tech
Industry
Software Development
Company size
11-50 employees
Type
Privately Held
Founded
2021
Specialties
database, sqlite, rust, and serverless

Employees at Turso

Updates

  • Turso Cloud is now part of the Stripe Projects developer preview. It unlocks a cleaner, more deterministic way to provision  unlimited real databases from the terminal. Modern apps and AI agents need fast, local, durable state. But provisioning that state has always been messy: dashboard hopping, manual key handling, brittle scripts, and zero support for agent‑driven automation. Stripe Projects fixes the provisioning layer, and Turso brings the distributed data layer that makes it useful. What this enables technically: Deterministic provisioning of Turso databases directly from the CLI Secure, agent‑ready credential delivery with clear ownership and rotation Instant access to replicated SQLite databases with fast reads A repeatable, infrastructure‑as‑code‑friendly workflow for multi‑region apps and agents Why it matters: Developers get a clean path from repo → real Turso environments without touching dashboards. Agents get reliable provisioning and real secrets instead of brittle heuristics. Teams get consistent, auditable setup flows that scale across environments. This is a developer preview, and we’re looking for feedback from teams building distributed systems, AI agents, and edge‑first applications. Install the Stripe CLI and run: stripe projects init my-app

  • If you’ve been following Turso’s work around rewriting SQLite, and connecting it on the Cloud for sync and query, this quiz is a fun way to benchmark how deep your understanding actually goes. It covers the fundamentals that matter for real systems: • how Turso handles reads • why branching is so cheap • what makes the SQLite model viable for production • how on-device replication works without the usual infra overhead • where Turso fits in modern AI + agent architectures See how high you can score and post it. 👉 https://lnkd.in/gR7PJ_Ex

  • Turso was born out of the desire to offer the world a view of what an Open Contribution model of what SQLite could be. In the age of AI, many projects are going in the opposite direction. We are doubling down, and recommitting our vision to an Open Source vision. With even more participants that earn their place by doing valuable work that pushes the project forward. But is "writing code" still valuable work? Great to see our CEO Glauber Costa put those thoughts in writing.

    I have seen many Open Source project leaders complain that the velocity in which code is produced now is deadly: people produce sloppy code trivially and send it upstream, effectively flooding the project's resources and draining the ability to review the code. We at Turso have also been plagued by the same thing. It invites us to think: is Open Source dead? Not for us. We are more Open Source than ever, and doubling down. We see Open Source as a way to give a seat at the table to the people who do the work to push a project forward. The only difference is that what is "work" changed. Writing code is free, and just writing code does not give anyone a claim on our maintainers' time. But many other things do. The beauty of it, is that the new tools democratize access and give a lot more people a chance to participate. Drawing from our experience in the Kernel, and how we think about it from first principles, I wrote some clarifications on our Open Source policy today. Read more: https://lnkd.in/gPDTgk3V

  • Catch our CEO Glauber Costa talking about our last year here at Turso: a much more powerful core database, deployable in a rock solid service. We are so excited for what 2026 has in store

    A year ago, we went on a crazy mission: rewrite the most beloved database in the world. We did that because it was clear to us that AI would change the world completely, and we needed a database that had the same file-based nature as SQLite, but could be a lot more powerful and a lot richer. A year later, we improve on SQLite by adding concurrent writes, CDC, encryption, and a long list of other features that make Turso the right choice for all your agentic workloads. At the same time, we turned the Turso Cloud into one of the most reliable database offerings in the market, and added the ability to encrypt each of your databases with your own key. I spent some time today to review the past year, and muse about what the future holds: https://lnkd.in/gCqDhUvW

  • Turso reposted this

    🚀 Turso 0.5.0 pushes #SQLite into the #AI era https://lnkd.in/gy-tXq4R Turso 0.5.0 is a reminder of how fast the SQLite ecosystem is evolving when you rebuild it for modern workloads. This release brings the features AI agents and edge apps have been waiting for: - Native vector search baked directly into the engine - Async I/O with io_uring for real throughput gains - Better schema changes and extended ALTER support - Cross‑platform: server, browser, device — the same DB everywhere - CDC + MVCC foundations that open the door to real multi‑writer concurrency SQLite had the right shape. Turso is giving it the right future!

  • View organization page for Turso

    4,536 followers

    Great write up by our CEO about why filesystems will be one of the key primitives of 2026 and beyond.

    I wrote some thoughts into the Turso blog today about why I think the Filesystem abstraction will be a key abstraction for LLMs. Read the full thing at: https://lnkd.in/gKWRSDFN A summary: 50 years ago, Unix popularized a concept that seems so obvious to us today, it is hard to grasp how revolutionary it was: "Everything is a file". Unix was built on files. Every single Unix application was designed to consume files, and then spit files. If we look closely, this is one of the first instances of a common interface (as APIs would become later). If there is a common interface, tools can hyper-specialize. And if tools can hyper-specialize, they can become very good at what they do. The many decades of Unix dominance left us with a very wide array of incredibly capable tools that speak the language of files. And late last year, it became clear that "agents" were really just a dumb French guy called "Claude" with access to a Unix shell, commandeering all those tools. The models are trained on those tools. And even for the new tools, it is hard to resist the urge of just following the pattern, and making it file-based at least to some extent. My prediction for 2026 is that filesystems will be back with all the rage. We at Turso developed AgentFS for this exact same purpose. Another tool I will highlight is Just-bash, by Malte Ubl at Vercel: it builds upon the fact that most modern agents are written in Typescript, and gives them access to a subset of the most powerful bash tools an agent would want. We live in wild times, and I am here for it!

  • View organization page for Turso

    4,536 followers

    AgentFS is the missing piece of the agent isolation puzzle

  • View organization page for Turso

    4,536 followers

    What does it mean for a database to "scale"? Up until now, that meant how many queries per second it can do, and how much data it can store. Our CEO Glauber Costa, writing for The New Stack, argues that pressure from agents will leads builders to look for a new axis of scalability: how many databases we can create, and how fast they can come online. Read more below!

  • View organization page for Turso

    4,536 followers

    AgentFS: the missing abstraction for Agent sandboxes. A full-fledged filesystem backed by a single SQLite file, powered by Turso.

    Today Turso is releasing AgentFS, the best way to handle storage in your agent sandboxes. We have heard from many agent builders, that told us a consistent story: state for agents is hard! Traditional client-server databases won't cut it, because you need very frequent access to data, and want to store assets like files and documents that the agent generates. Traditional filesystems don't work either because they are either not available in some sandboxed environments, or they just can't meet the scale that sandboxed agents require (ever tried to attach an EBS volume to a K8s pod? Imagine if you want agents coming online in milliseconds...) AgentFS provides a rich API for dealing with all of the data an agent needs: Files and Documents, Key-Value for configuration, Audit trails for agent execution state. All of this stored in a single SQLite file, backed by Turso, the next evolution of SQLite. In the future we will see not billions, but trillions of agents throughout the economy. They will come online in milliseconds, and will generate an amount of data that is incomprehensible today. Turso is here to build this future. Learn more about AgentFS: https://lnkd.in/gvG5tAcb

Similar pages

Browse jobs

Funding

Turso 2 total rounds

Last Round

Seed
See more info on crunchbase