Storage access from Rust
# How Rust reaches every storage kind — per-store drivers and the sqlx/diesel/sea-orm spectrum — with a deep dive per kind.
❯ cat documents/
-
Storage access from Rust — the map
Concept
2026-08-09
How Rust reaches every storage kind — no stdlib layer, per-store drivers, the sqlx/diesel/sea-orm spectrum for relational — mapped store by store.
-
Document and NoSQL stores from Rust
Concept
2026-08-09
The official mongodb driver with bson/serde mapping, ScyllaDB's shard-aware scylla crate for Cassandra-family stores, and DynamoDB via aws-sdk-dynamodb with serde_dynamo.
-
Graph databases from Rust
Concept
2026-08-09
neo4rs as the community Bolt driver for Neo4j, Gremlin via gremlin-client, embedded RDF/SPARQL with oxigraph, and the thin-but-workable state of the corner.
-
Redis from Rust — redis-rs & fred
Concept
2026-08-09
The redis crate as the default client and fred as the batteries-included alternative — connection management, typed command conversions, pub/sub and streams, and the cache/lock patterns.
-
Relational databases from Rust — sqlx, diesel & sea-orm
Concept
2026-08-09
The relational spectrum — sqlx's compile-time-checked SQL, diesel's type-safe DSL, sea-orm's async ORM, tokio-postgres underneath — plus pooling, transactions and migrations.
-
Time-series stores from Rust
Concept
2026-08-09
Prometheus exposition with prometheus-client and the metrics facade, InfluxDB via influxdb2, the PG-wire stores through sqlx, and Rust as the new TSDB implementation language.