drizzle 0.1.16

A type-safe SQL query builder for Rust
Documentation
[
  {
    "version": "v1",
    "id": "drizzle-rs-sqlite",
    "display": {
      "name": "Drizzle RS SQLite",
      "description": "drizzle-rs using the rusqlite SQLite driver"
    },
    "group": "drizzle-rs",
    "lang": "rust",
    "runtime": {
      "name": "rust",
      "ver": "1.95.0"
    },
    "orm": {
      "name": "drizzle-rs",
      "ver": "0.1.15"
    },
    "driver": {
      "name": "rusqlite",
      "ver": "0.39.0"
    },
    "proc": {
      "mode": "single",
      "workers": 1
    },
    "pool": {
      "max": 8,
      "min": 1,
      "acquire_ms": 50
    },
    "db": {
      "profile": "sqlite",
      "hash": "sha256:7bd4286ec47f86445e5ef9f6cc6357a27974cb8313766444fa5cbeff8eb83d43",
      "prepared": false
    },
    "wire": {
      "format": "json"
    },
    "fair": {
      "family": "sqlite",
      "workers": 1,
      "pool": 8,
      "db": "sqlite",
      "schema": "sha256:67d569fc52dca6de6f2747867f2e7abe8f4cc736f2c2454f9da5f6e78901759d",
      "contract": "v1",
      "tuning": "WAL journal, synchronous=NORMAL, temp_store=MEMORY, read-only connections (query_only=ON), 64MiB page cache, 256MiB mmap"
    },
    "contract": {
      "ver": "v1"
    },
    "server": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "serve"
      ]
    },
    "parity": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "parity"
      ]
    },
    "load": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "load"
      ]
    },
    "sql_variant": "drizzle-rs select builder on every route, including the employees self-join (table alias) and the /orders-with-details aggregate; that aggregate groups by every non-aggregate column it projects because the builder rejects bare columns under GROUP BY"
  },
  {
    "version": "v1",
    "id": "drizzle-rs-sqlite-query",
    "display": {
      "name": "Drizzle RS SQLite (query API)",
      "description": "drizzle-rs relational query API (db.query(..).with(..)) on the rusqlite driver"
    },
    "group": "drizzle-rs",
    "lang": "rust",
    "runtime": {
      "name": "rust",
      "ver": "1.95.0"
    },
    "orm": {
      "name": "drizzle-rs",
      "ver": "0.1.15"
    },
    "driver": {
      "name": "rusqlite",
      "ver": "0.39.0"
    },
    "proc": {
      "mode": "single",
      "workers": 1
    },
    "pool": {
      "max": 8,
      "min": 1,
      "acquire_ms": 50
    },
    "db": {
      "profile": "sqlite-drizzle-query",
      "hash": "sha256:7bd4286ec47f86445e5ef9f6cc6357a27974cb8313766444fa5cbeff8eb83d43",
      "prepared": false
    },
    "wire": {
      "format": "json"
    },
    "fair": {
      "family": "sqlite",
      "workers": 1,
      "pool": 8,
      "db": "sqlite",
      "schema": "sha256:67d569fc52dca6de6f2747867f2e7abe8f4cc736f2c2454f9da5f6e78901759d",
      "contract": "v1",
      "tuning": "WAL journal, synchronous=NORMAL, temp_store=MEMORY, read-only connections (query_only=ON), 64MiB page cache, 256MiB mmap"
    },
    "contract": {
      "ver": "v1"
    },
    "server": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "serve"
      ]
    },
    "parity": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "parity"
      ]
    },
    "load": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "load"
      ]
    },
    "sql_variant": "relational query API: relations load as JSON subqueries in one round trip, and /orders-with-details has no aggregate form so productsCount/quantitySum/totalPrice are folded in Rust from the loaded detail rows"
  },
  {
    "version": "v1",
    "id": "rusqlite-sqlite-prepared",
    "display": {
      "name": "rusqlite SQLite (prepared)",
      "description": "raw rusqlite baseline using the shared SQLite schema with cached prepared statements"
    },
    "group": "rusqlite",
    "lang": "rust",
    "runtime": {
      "name": "rust",
      "ver": "1.95.0"
    },
    "orm": {
      "name": "none",
      "ver": "0"
    },
    "driver": {
      "name": "rusqlite",
      "ver": "0.39.0"
    },
    "proc": {
      "mode": "single",
      "workers": 1
    },
    "pool": {
      "max": 8,
      "min": 1,
      "acquire_ms": 50
    },
    "db": {
      "profile": "sqlite-prepared",
      "hash": "sha256:7bd4286ec47f86445e5ef9f6cc6357a27974cb8313766444fa5cbeff8eb83d43",
      "prepared": true
    },
    "wire": {
      "format": "json"
    },
    "fair": {
      "family": "sqlite",
      "workers": 1,
      "pool": 8,
      "db": "sqlite",
      "schema": "sha256:67d569fc52dca6de6f2747867f2e7abe8f4cc736f2c2454f9da5f6e78901759d",
      "contract": "v1",
      "tuning": "WAL journal, synchronous=NORMAL, temp_store=MEMORY, read-only connections (query_only=ON), 64MiB page cache, 256MiB mmap"
    },
    "contract": {
      "ver": "v1"
    },
    "server": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "serve"
      ]
    },
    "parity": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "parity"
      ]
    },
    "load": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "load"
      ]
    }
  },
  {
    "version": "v1",
    "id": "rusqlite-sqlite-unprepared",
    "display": {
      "name": "rusqlite SQLite (unprepared)",
      "description": "raw rusqlite baseline using the shared SQLite schema with statement caching disabled"
    },
    "group": "rusqlite",
    "lang": "rust",
    "runtime": {
      "name": "rust",
      "ver": "1.95.0"
    },
    "orm": {
      "name": "none",
      "ver": "0"
    },
    "driver": {
      "name": "rusqlite",
      "ver": "0.39.0"
    },
    "proc": {
      "mode": "single",
      "workers": 1
    },
    "pool": {
      "max": 8,
      "min": 1,
      "acquire_ms": 50
    },
    "db": {
      "profile": "sqlite-unprepared",
      "hash": "sha256:7bd4286ec47f86445e5ef9f6cc6357a27974cb8313766444fa5cbeff8eb83d43",
      "prepared": false
    },
    "wire": {
      "format": "json"
    },
    "fair": {
      "family": "sqlite",
      "workers": 1,
      "pool": 8,
      "db": "sqlite",
      "schema": "sha256:67d569fc52dca6de6f2747867f2e7abe8f4cc736f2c2454f9da5f6e78901759d",
      "contract": "v1",
      "tuning": "WAL journal, synchronous=NORMAL, temp_store=MEMORY, read-only connections (query_only=ON), 64MiB page cache, 256MiB mmap"
    },
    "contract": {
      "ver": "v1"
    },
    "server": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "serve"
      ]
    },
    "parity": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "parity"
      ]
    },
    "load": {
      "cmd": [
        "$BENCH_RUNNER_BIN",
        "load"
      ]
    }
  }
]