athena_rs 3.26.2

Hyper performant polyglot Database driver
Documentation
<!-- Generated by scripts/generate_workspace_docs.py. Edit the generator instead of hand-editing this file. -->

# Athena examples manifest

| Example | Lane | Focus |
| --- | --- | --- |
| `athena_client_sdk.rs` | sdk | Baseline Rust SDK setup and multi-backend client construction. |
| `storage_sdk.rs` | sdk | Storage-facing SDK usage from the Rust client surface. |
| `supabase_health_tracking.rs` | sdk | Supabase health-aware client and circuit-breaker style flow. |
| `gateway_endpoints.rs` | gateway contracts | Inspect canonical gateway route constants and resolved endpoint URLs. |
| `gateway_routes_static.rs` | gateway contracts | Build gateway endpoint URLs directly from static constants and helpers. |
| `gateway_fetch_builder.rs` | gateway builders | Fetch rows with filters, ordering, limits, and offsets via the builder API. |
| `gateway_insert_builder.rs` | gateway builders | Insert payloads through the insert builder surface. |
| `gateway_update_builder.rs` | gateway builders | Perform condition-based updates through the shared update builder. |
| `gateway_delete_builder.rs` | gateway builders | Perform condition-based deletes through the delete builder. |
| `gateway_row_id_shortcuts.rs` | gateway builders | Use `update_by_id` and `delete_by_id` helper shortcuts. |
| `gateway_sql.rs` | gateway builders | Execute raw SQL with the Rust SDK's SQL surface. |
| `gateway_rpc_builder.rs` | gateway builders | Call Postgres functions through `AthenaClient::rpc` with args and result shaping. |
| `gateway_alias_methods.rs` | gateway builders | Use athena-js-style alias helpers such as `fetch` and `sql`. |
| `gateway_typed_requests.rs` | gateway contracts | Work with typed `Gateway*Request` structs instead of chain builders. |
| `gateway_shared_conditions.rs` | gateway builders | Build reusable condition vectors once and share them across operations. |
| `gateway_complex_filters.rs` | gateway builders | Compose mixed filter operators like `eq`, `neq`, `gt`, `lt`, `in`, and friends. |
| `gateway_raw_select_nested.rs` | gateway builders | Issue nested PostgREST-style `raw_select` expressions. |
| `gateway_bulk_workflow.rs` | gateway workflows | Walk through insert -> fetch -> update -> delete as one practical SDK flow. |
| `gateway_d1_flat_crud.rs` | edge and D1 | Exercise Cloudflare D1 gateway usage with flat CRUD and bookmark metadata. |
| `perf_insert_duplicate_replay.rs` | performance | Replay duplicate-heavy insert traffic and collect latency plus queue/fallback metrics. |