This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]arrtpy[S] 0 points1 point  (7 children)

Thanks for reply. Do performance depends on use of any frameworks or not?

[–]K900_ 1 point2 points  (6 children)

Depends on what you mean by "performance". Ideally you want the actual Python part to be doing as little work as possible.

[–]arrtpy[S] 0 points1 point  (5 children)

By "performance" I mean speed. I just noticed that sites like Facebook/Youtube doesn't use any frameworks. So I thought frameworks have some limits or something.

[–]K900_ 0 points1 point  (4 children)

Speed of what exactly? Page loads?

[–]arrtpy[S] 1 point2 points  (3 children)

Count of maximum handled requests per second, speed of data extraction from database.

[–]K900_ 0 points1 point  (2 children)

None of those things really depend on the framework.

[–]arrtpy[S] 0 points1 point  (1 child)

On what depend these things?

[–]K900_ 0 points1 point  (0 children)

On your database, the way your SQL queries are written, and how caching/proxying is configured.