We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 068ec72 commit cbc5e6dCopy full SHA for cbc5e6d
2 files changed
docs/ARCHITECTURE.md
@@ -20,11 +20,11 @@
20
21
### Why Rust Server?
22
23
-At 200+ connections, Python asyncio:
24
-- Uses 10GB+ memory (vs 2GB Rust)
25
-- 80%+ CPU idle (vs 5% Rust)
26
-- 500ms+ p99 latency (vs 20ms Rust)
27
-- GIL contention kills performance
+For high-concurrency workloads, Python asyncio:
+- Uses significantly more memory than Rust
+- Higher CPU usage and GIL contention
+- Higher p99 latency
+- Rust provides better performance and resource efficiency
28
29
### Why WebSocket?
30
docs/QUICKSTART.md
@@ -41,7 +41,7 @@ Run: `python3 simple_agent.py`
41
--daemon-id my-daemon-1
42
```
43
44
-Start 200+ on different machines pointing to same agent URL.
+Start many daemons on different machines pointing to same agent URL.
45
46
## 4. Test
47
0 commit comments