# Dispatch > Documentation for Dispatch, version 1.x. > Every entry links to the page's markdown source. Repository: https://github.com/xraph/dispatch Site: https://www.xraph.com/docs/dispatch ## Pages - [Go Packages](https://www.xraph.com/docs/dispatch/api-reference/go-packages.md): Quick reference for all Dispatch Go packages and their public APIs. - [HTTP Admin API](https://www.xraph.com/docs/dispatch/api-reference/http-api.md): Complete reference for the Dispatch admin API endpoints. - [Architecture](https://www.xraph.com/docs/dispatch/architecture.md): How Dispatch's packages fit together. - [Configuration](https://www.xraph.com/docs/dispatch/concepts/configuration.md): Functional options, the Config struct, and how to customize Dispatch behavior. - [Entities](https://www.xraph.com/docs/dispatch/concepts/entities.md): The base entity type and how domain objects are structured in Dispatch. - [Error Handling](https://www.xraph.com/docs/dispatch/concepts/errors.md): Sentinel errors and how Dispatch surfaces problems. - [Identity (TypeID)](https://www.xraph.com/docs/dispatch/concepts/identity.md): How Dispatch uses prefix-qualified, globally unique identifiers for every entity. - [Multi-Tenancy](https://www.xraph.com/docs/dispatch/concepts/multi-tenancy.md): How Dispatch scopes jobs and workflows to app and organization contexts. - [Getting Started](https://www.xraph.com/docs/dispatch/getting-started.md): Install Dispatch and process your first job in under five minutes. - [Custom Store](https://www.xraph.com/docs/dispatch/guides/custom-store.md): Implement your own store backend for Dispatch. - [Kitchen-Sink Example](https://www.xraph.com/docs/dispatch/guides/examples.md): A comprehensive example application demonstrating jobs, workflows, sagas, child workflows, cron, and the DWP server. - [Forge Extension](https://www.xraph.com/docs/dispatch/guides/forge-extension.md): Mount Dispatch into a Forge application. - [Full Example](https://www.xraph.com/docs/dispatch/guides/full-example.md): Build a complete background job processor with Dispatch. - [Testing](https://www.xraph.com/docs/dispatch/guides/testing.md): How to test jobs, workflows, and DWP integrations using the in-memory store and Go's testing package. - [Relay Hook](https://www.xraph.com/docs/dispatch/guides/webhook-verification.md): Emit typed webhook events at every Dispatch lifecycle point using relay_hook. - [Introduction](https://www.xraph.com/docs/dispatch.md): Composable durable execution engine for Go. - [Go Client](https://www.xraph.com/docs/dispatch/sdks/go.md): Native Go client for connecting to a Dispatch server via the DWP WebSocket protocol. - [Python SDK](https://www.xraph.com/docs/dispatch/sdks/python.md): Python async client for connecting to a Dispatch server via the DWP WebSocket protocol. - [TypeScript SDK](https://www.xraph.com/docs/dispatch/sdks/typescript.md): TypeScript/JavaScript client for connecting to a Dispatch server via the DWP WebSocket protocol. - [Memory Store](https://www.xraph.com/docs/dispatch/stores/memory.md): In-memory store for development, testing, and prototyping. - [MongoDB Store](https://www.xraph.com/docs/dispatch/stores/mongo.md): MongoDB store for document-oriented and horizontally-scalable Dispatch deployments. - [PostgreSQL Store](https://www.xraph.com/docs/dispatch/stores/postgres.md): Production-ready PostgreSQL store using grove ORM with pgdriver. - [Redis Store](https://www.xraph.com/docs/dispatch/stores/redis.md): High-throughput Redis store for ephemeral and latency-sensitive Dispatch workloads. - [SQLite Store](https://www.xraph.com/docs/dispatch/stores/sqlite.md): Lightweight SQLite store for embedded and single-node Dispatch deployments. - [Admin API](https://www.xraph.com/docs/dispatch/subsystems/admin-api.md): HTTP admin API for managing Dispatch jobs, workflows, crons, and the DLQ. - [Jobs](https://www.xraph.com/docs/dispatch/subsystems/catalog.md): Typed job definitions, the registry, state machine, retries, and backoff. - [Workflows](https://www.xraph.com/docs/dispatch/subsystems/delivery.md): Durable multi-step functions with checkpointing, parallel execution, and event waiting. - [Dead Letter Queue](https://www.xraph.com/docs/dispatch/subsystems/dlq.md): Failed job management, inspection, replay, and purge. - [Dispatch Wire Protocol (DWP)](https://www.xraph.com/docs/dispatch/subsystems/dwp.md): Real-time client connectivity over WebSocket, SSE, and HTTP RPC using the frame-based Dispatch Wire Protocol. - [Cron](https://www.xraph.com/docs/dispatch/subsystems/endpoints.md): Distributed cron scheduling with leader election and per-tenant support. - [Cluster](https://www.xraph.com/docs/dispatch/subsystems/events.md): Distributed worker coordination, leader election, heartbeats, and work stealing. - [Observability](https://www.xraph.com/docs/dispatch/subsystems/observability.md): OpenTelemetry metrics and tracing for Dispatch. - [Middleware](https://www.xraph.com/docs/dispatch/subsystems/rate-limiting.md): Composable job execution middleware for logging, tracing, metrics, recovery, and scope. - [Extensions](https://www.xraph.com/docs/dispatch/subsystems/signatures.md): Lifecycle hooks for jobs, workflows, cron, and shutdown events.