diff options
| author | Fuwn <[email protected]> | 2026-02-27 09:46:54 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-27 09:46:54 -0800 |
| commit | 4404543e86dc4a5a6e7f81f120ebacd3fe0be020 (patch) | |
| tree | 3d506b7d474a551d5b60a9f31a51c7071177a355 | |
| parent | docs: refine mode selection wording for clarity (diff) | |
| download | plutia-test-4404543e86dc4a5a6e7f81f120ebacd3fe0be020.tar.xz plutia-test-4404543e86dc4a5a6e7f81f120ebacd3fe0be020.zip | |
docs: clarify mode comparison table wording
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -222,8 +222,8 @@ services: | Mode | Disk Usage (at current PLC size) | CPU Usage | Ingestion Behavior | Verification Guarantees | Historical Archive? | Checkpoint Proof Support? | Recommended For | |---|---|---|---|---|---|---|---| -| `mirror` | ~1.17 KB/op (~100 GB at current PLC head) | High sustained | Continuous full replay + polling | Full chain verification at ingest (`verify=full`), deterministic state, signed checkpoints | Yes | Yes | Independent mirrors, auditors, proof-serving infrastructure | -| `resolver` | ~0.8 KB/op (~60–70 GB at current PLC head) | Medium to high sustained | Continuous replay + polling, state-only storage | Full verification supported; stores resolved state without full block archive | No | No | Operators who want full verification with lower storage overhead | +| `mirror` | ~1.17 KB per operation (~100 GB at current PLC head; scales linearly) | High sustained | Continuous full replay + polling | Full chain verification at ingest (`verify=full`), deterministic state, signed checkpoints | Yes | Yes | Independent mirrors, auditors, proof-serving infrastructure | +| `resolver` | ~0.8 KB/op (~60–70 GB at current PLC head) | Medium to high sustained | Continuous replay + polling, state-only storage | Full verification at ingest; stores resolved state without retaining historical block archive | No | No | Operators who want full verification with lower storage overhead | | `thin` | ~475 bytes per cached DID (scales with active usage, not global PLC size) | Low idle, bursty on requests | No global replay; fetches and verifies per DID on demand | Performs full signature and prev-link verification for each requested DID chain before caching. | No | No | Edge deployments, small VPS instances, low-disk resolvers | Disk usage scales linearly with total PLC operation count. |