I am running into a performace problem with Django and scaling. I have enabled the caching middleware, but had to set CACHE_MIDDLEWARE_ANONYMOUS_ONLY=True so I could continue to use the admin interface.
Now, authenticated users are beginning to put a noticeable load on the server. How do I implement caching on my normal views for authenticated users? I can't just use the decorator because I have a "Hello, Username" message on the page. I tried to look at caching querysets, but this won't work because they are lazy. If I use fragment caching, would that save hits on the database because of the lazy querysets? Is there anyone else who had this problem and was able to solve it? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---