|
|
|
|
|
by jakuboboza
2146 days ago
|
|
The scaling factor for each app is really the way it interact with slowest part of the API. If it is Database than no matter how optimal your Rust code is, you might fare in the end not that much better than Rails just because you hinged everything on eg. Postgres. |
|
The one I'm currently working on is blazing fast and were truly hitting postgres limits... At nearly 50k requests a second.
The DB is rarely a bottleneck if you have sane structure and indexes. Ironically the slowest frameworks also tend to generate terrible queries (ActiveRecord, SQLAlchemy), so you end up with a slow database and web framework