On 7/14/07, Amit Ramon <[EMAIL PROTECTED]> wrote: > 1. The language must be set before creating the menu (so the menu will be in > the correct language). I assume that middleware gets called before context > processors. Am I right here?
Yes. > 2. I noticed that the middleware is called for every request - this means that > if I access a page which loads additional stuff - for example images, or css > files, the middleware is called multiple times. At least in my case, I only > need my custom middleware to be called once for every page. Am I paying > anything by this behavior (performance wise, of course)? If this is the case, it means you're using Django to serve media, which you shouldn't do if you can avoid it. Django is for dynamic stuff, and media is generally static. Change your server config, and media will be a lot faster. > 3. A more general question: the menu changes very rarely. How my design > affects performance? I mean, is there a db access for every page, or is there > some caching? While I understand the menu is somewhat dynamic, you might consider making this a template tag that does it's own caching: http://www.djangosnippets.org/snippets/223/ --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---