--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To post to this group, send email to django...@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/9bb086f2-8d30-4d97-af2c-921610d364df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
>
> Thanks for reply.
>
> I am using default value for django cache.
>
> We are building dynamic website so URL should be same for all user. But Session can be used to display dynamic content.
>
> What are reason for such type behavior?
>
> And I am unable to reproduce the issue again.
>
Sometimes cases like this can be attributed to code that is not thread safe and introduces race conditions. It may be that this issue will only appear while the server is under high load.
Can you provide the view for your user profile (or the page you mentioned where you saw the issue) and the template? The relevant urls.py may also be useful.
-James