On 11 jan, 18:46, Jo <spaceout...@gmail.com> wrote: > While building a website using template inheritance one usually does > the following: > > fetch from database > fetch from some more data from database > ... << more required computations > then at the end render the template with the fetched data > > Without template inheritance one usually does the following: > > fetch from database > render this part of the site with this fetched data > fetch some more data from the database > render this other part of the site with the fetched data
This has nothing (or very few) to do with inheritance. You'd have the same behaviour (ie : first getting all data, then building html, then return the response) without using inheritance in your template. > etc > > The first approach is much more elegant and leads to easier to > maintain code. However the user will have to wait till the end of the > fetching (long computations) before any rendering can take place. In > the second approach however the site loads as we are fetching the data > which is more convenient to the user. > > Am I correct to assume this? You are correct to assume that no rendering can happen before you send a response to the client, indeed. > Is there a way to get the best of both > worlds? Maybe using generators? Thank you. You can of course pass an iterable to your reponse object (read the doc for the HttpResponse object), but then you'll have to organize your code very differently, and not necessarily in the most readable and maintainable way. As far as I'm concerned, I'd first try to profile and possibly optimize the "very long computation" part. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---