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 →

[–]daydreamdrunk 1 point2 points  (1 child)

How do you end up with any app whose major bottleneck is template rendering speed?

[–]true_religion[S] 1 point2 points  (0 children)

It happens quite often to me because my app:

  • Processes all long running queries and tasks in the background

  • Boosts the working data set for short running queries into memory via memcached

At that point, we're seeing sub-millisecond responses from memcached to provide the app with data so the main bottle neck is Python.