https://github.com/neulhan/python-rust-server-comparison
https://github.com/neulhan/python-rust-server-comparison
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/neulhan/python-rust-server-comparison
- Owner: Neulhan
- Created: 2023-11-25T10:41:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-14T00:33:58.000Z (over 2 years ago)
- Last Synced: 2024-02-14T01:32:05.258Z (over 2 years ago)
- Language: Python
- Size: 1.79 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Rust Server Comparison
## [Common]
|||
|---|---|
|database|mysql|
|cloud|aws-ec2 |
|server instance|t3.micro|
#### *t3.micro
|cpu|기준선|memory|cost/hour|
|---|---|---|---|
|2vCPU|10%|1GiB Memory|0.0104 USD|
## [python]
|||
|---|---|
|python|3.11.6|
|http server|fastapi 0.104.1|
|database|sqlalchemy 2.0.23|
|asgi server|uvicorn 0.24.0|
|serializer|pydantic 2.5.2|
## [rust]
|||
|---|---|
|rustc|1.74.0|
|http server|axum 0.6.20|
|database|sqlx 0.7.3|
|serializer|serde 1.0|
|async runtime|tokio 1.34|
## [loadtest]
locust
```python
uvicorn src.main:app --reload
```