blob: 98f997bff711c33cfbcabda20e34e5d82df647e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
from django.db import backend, connection, transaction
""" Daily cleanup file
This purges the session data that is old from the session table.
"""
def clean_up():
# Clean up old database records
cursor = connection.cursor()
cursor.execute("DELETE FROM %s WHERE %s < NOW()" % \
(backend.quote_name('django_session'), backend.quote_name('expire_date')))
cursor.execute("OPTIMIZE TABLE %s" % backend.quote_name('django_session'))
transaction.commit_unless_managed()
if __name__ == "__main__":
clean_up()
|