Storage access from Go
# How Go reaches every storage kind — database/sql, per-store drivers, and the raw-driver-to-ORM spectrum, mapped store by store.
❯ cat documents/
-
Storage access from Go — the map
Concept
2026-08-09
How Go reaches every storage kind — database/sql, per-store drivers, and the raw-driver-to-ORM spectrum, mapped store by store.
-
Document and NoSQL stores from Go
Concept
2026-08-09
MongoDB, Cassandra/Scylla, DynamoDB, and Couchbase clients — struct-tag mapping, per-call consistency knobs, and modeling with structs instead of entities.
-
Graph databases from Go
Concept
2026-08-09
Neo4j's official driver and Cypher transaction functions, Gremlin via gremlin-go, Dgraph's dgo client, and when graph beats recursive SQL.
-
Redis from Go
Concept
2026-08-09
go-redis as the default client, rueidis and redigo alternatives, and the cache, lock, rate-limit, and streaming patterns built on them.
-
Relational databases from Go
Concept
2026-08-09
The database/sql substrate, pgx for Postgres, and the query-layer spectrum — sqlc, sqlx, GORM, ent, builders, migrations, and explicit transactions.
-
Time-series stores from Go
Concept
2026-08-09
Prometheus as Go's native habitat, OpenTelemetry as the converging facade, and the Influx, Timescale, VictoriaMetrics, and QuestDB client paths.