I noticed in Chrome web tools that even after i log out of my Django site, the user cookie still exists. Im assuming this is the anon user? There is not much in the django documentation about anon users. is there a way to disable this?
Asked
Active
Viewed 219 times
1 Answers
1
After logging out, your session cookie is destroyed and its place is taken by anonymous session cookie. When you log back in again, this anonymous session cookie is replaced by your session cookie.
You don't really have to worry about it. However if you really want to disable that cookie, take a look at the following resources:
- This question on StackOverlow.
- Django-cookieless project on GitHub.
-
Thanks for clarifying wanted to make sure It wasn't something I'd done – sidarcy Apr 15 '14 at 23:19