Skip to content

Commit 9b9611c

Browse files
committed
updated benchmark numbers in the readme
1 parent 7b3aa82 commit 9b9611c

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
# High-Performance Fully Typed API Framework for Django
1111

12-
Your first question might be: why? Well, consider this: **Faster than _FastAPI_, but with Django ORM, Django Admin, and Django packages**. That’s exactly what this project achieves. Django-Bolt is a high-performance API framework for Django, providing Rust-powered API endpoints capable of 60k+ RPS. Similar to Django REST Framework or Django Ninja, it integrates seamlessly with existing Django projects while leveraging Actix Web for HTTP handling, PyO3 to bridge Python async handlers with Rust's async runtime, and msgspec for fast serialization. You can deploy it directly—no gunicorn or uvicorn needed.
12+
Your first question might be: why? Well, consider this: **Faster than _FastAPI_, but with Django ORM, Django Admin, and Django packages**. That’s exactly what this project achieves. Django-Bolt is a high-performance API framework for Django, providing Rust-powered API endpoints capable of 188k+ RPS. Similar to Django REST Framework or Django Ninja, it integrates seamlessly with existing Django projects while leveraging Actix Web for HTTP handling, PyO3 to bridge Python async handlers with Rust's async runtime, and msgspec for fast serialization. You can deploy it directly—no gunicorn or uvicorn needed.
1313

1414
## 🚀 Quick Start
1515

@@ -85,13 +85,13 @@ python manage.py runbolt --dev
8585

8686
| Endpoint Type | Requests/sec |
8787
| ------------------------------ | ---------------- |
88-
| Root endpoint | **~100,000 RPS** |
89-
| JSON parsing/validation (10kb) | **~83,700 RPS** |
90-
| Path + Query parameters | **~85,300 RPS** |
91-
| HTML response | **~100,600 RPS** |
88+
| Root endpoint | **~188,100 RPS** |
89+
| JSON parsing/validation (10kb) | **~128,400 RPS** |
90+
| Path + Query parameters | **~163,200 RPS** |
91+
| HTML response | **~164,100 RPS** |
9292
| Redirect response | **~96,300 RPS** |
93-
| Form data handling | **~76,800 RPS** |
94-
| ORM reads (SQLite, 10 records) | **~13,000 RPS** |
93+
| Form data handling | **~143,900 RPS** |
94+
| ORM reads (SQLite, 10 records) | **~14,800 RPS** |
9595

9696
### Streaming Performance (Async)
9797

0 commit comments

Comments
 (0)