⚡
Blazing Fast
1.63µs average execution time. 600x faster than 1ms target. Zero-allocation hot path.
Sub-microsecond latency, 500K+ QPS, with visual editor

{
"config": {
"name": "discount-check",
"version": "1.0.0",
"entry_step": "check_vip"
},
"steps": {
"check_vip": {
"id": "check_vip",
"name": "Check VIP Status",
"type": "decision",
"branches": [{ "condition": "user.vip == true", "next_step": "vip_discount" }],
"default_next": "normal_discount"
},
"vip_discount": {
"id": "vip_discount",
"type": "terminal",
"result": { "code": "VIP", "message": "20% discount" }
},
"normal_discount": {
"id": "normal_discount",
"type": "terminal",
"result": { "code": "NORMAL", "message": "5% discount" }
}
}
}| Metric | Result |
|---|---|
| Single rule execution | 1.63 µs |
| Expression evaluation | 79-211 ns |
| HTTP API throughput | 54,000 QPS |
| Projected multi-thread | 500,000+ QPS |