Search code examples
pythondjangodjango-sessions

Session database table cleanup


Does this table need to be purged or is it taken care of automatically by Django?


Solution

  • Django does NOT provide automatic purging. There is however a handy command available to help you do it manually: Django docs: Clearing the session store

    python manage.py clearsessions