In this Go quickstart we will learn how to:Documentation Index
Fetch the complete documentation index at: https://docs.turso.tech/llms.txt
Use this file to discover all available pages before exploring further.
- Install the Turso package
- Connect to a local or remote database
- Execute a query using SQL
- Sync changes to the cloud
Recommended: tursogo (Local + Cloud Sync)
tursogo is the recommended package for running a local database, including synchronizing it to and from Turso Cloud. It is built on the Turso Database engine — a ground-up rewrite of SQLite with concurrent writes (MVCC) and async I/O. It implements the standard database/sql driver interface, so it works as a drop-in replacement for any Go SQLite driver. It ships prebuilt native libraries and uses purego for FFI — no CGO required.
Sync (push and pull)
If you need to sync your local database with Turso Cloud, use the sync driver:All reads and writes happen against the local database file — fast, offline-capable.
Push() sends your changes to the cloud. Pull() brings remote changes down. See the reference for checkpoint, stats, and encryption. See Turso Sync for details on conflict resolution and more.You can test sync locally without a Turso Cloud account by starting a local sync server:Then set
RemoteUrl to http://127.0.0.1:8080 (no AuthToken needed). See Turso Database quickstart for how to install tursodb.Remote Access (Over-the-Wire)
If your application needs to query a Turso Cloud database directly over the network (e.g., from a web server or serverless function), use thelibsql-client-go package. It connects to your database via the libSQL wire protocol — no local file needed, pure Go.
For most applications, we recommend running a local database with sync (
NewTursoSyncDb) instead — it gives you faster reads, offline support, and lower latency. Remote access is useful when you cannot store a local database file (e.g., stateless serverless environments).Retrieve database credentials
You will need an existing database to continue. If you don’t have one, create one.Get the database URL:Get the database authentication token:Assign credentials to the environment variables inside
.env.You will want to store these as environment variables.
Legacy: go-libsql (Embedded Replicas)
See the reference for legacy documentation on embedded replicas if you have an existinggo-libsql codebase.