Y
Hacker News
new
|
ask
|
show
|
jobs
by
Ono-Sendai
4036 days ago
You can do faster than that as well if you use C++ - I can render pages dynamically in 0.1 ms or so.
1 comments
merb
4036 days ago
templates are mostly not the problem, even on python, when you use jinja templates getting generated really fast. However the problem mostly comes through the database. A single page view could hit like 10 queries.
link
Ono-Sendai
4036 days ago
Yeah. Avoid the database, just read from RAM :)
link
ne01
4036 days ago
That's it the main bottleneck is Database calls!
link