On Thu, 2012-04-05 at 05:25 -0700, Lars Ruoff wrote: > the question is not about serving static data (like HTML, images > etc.), but having global python variables initialized once, for all > instances of the site, that is, so they can be used from within each > view.
this is precisely the point I addressed in my reply. Every request to django starts a new instance of django - and you have to initialise the variables again - cacheing may improve the performance. Django is not a server. -- regards Kenneth Gonsalves -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

