|
|
|
|
|
by sabe__
4831 days ago
|
|
Isn’t it that django and rails has flat curves because they are by nature blocking. So it wouldn’t matter how many request you throw at them as they are limited in how much they can handle at once. And to on top of this compare database requests is meaningless as the blocking nature of the framework itself is the major bottleneck, and not the database. Now, for a normal web application, the largest amount of request would come from static content, or cached content within the web app so the real gain would be a tiny fraction between python/ruby and go/java-based frameworks. That said, if you want to handle static content (images and such) from within your app, or build a java script-centric application with lots of tiny requests, or even persistent once...nor rails or django would do. |
|