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

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.
Yeah. Avoid the database, just read from RAM :)
That's it the main bottleneck is Database calls!