From 1bd930411538eada6339aff7574072a9e2b8dda1 Mon Sep 17 00:00:00 2001 From: geobelsky Date: Wed, 25 Mar 2026 20:04:15 +0000 Subject: [PATCH] docs: add yes/no comparison table for DIY vs Temporal vs AXME Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0464d4c..9c58f7f 100644 --- a/README.md +++ b/README.md @@ -121,11 +121,14 @@ No polling. No webhooks. No Redis. No glue code. The platform handles retries, t ## How AXME Compares -| Approach | Lines of code | What you operate | -|---|---|---| -| DIY (webhooks + polling + Redis) | ~200 | Everything: retry logic, state machine, timeout jobs, notification service | -| Temporal | ~80 | Temporal server cluster, workers, determinism constraints | -| AXME | 4 | Nothing - managed service with protocol-level guarantees | +| | DIY (webhooks + polling) | Temporal | AXME | +|---|---|---|---| +| Polling | Yes | No | No | +| Webhooks | Yes | No | No | +| Human approvals | Custom build | Possible (heavy) | Built-in (8 task types) | +| Workflow code | Manual state machine | Required (deterministic) | Not required | +| Setup | Low (but fragile) | High (cluster + workers) | None (managed service) | +| Lines of code | ~200 | ~80 | 4 | ---