Website: Used cache based sessions instead of database-backed sessions.

This commit is contained in:
Emanuel Schuetze 2012-07-23 22:51:17 +02:00
parent 769bceb80e
commit b6ffc66d40

View File

@ -110,6 +110,8 @@ MIDDLEWARE_CLASSES = (
# 'django.middleware.clickjacking.XFrameOptionsMiddleware',
)
SESSION_ENGINE = 'django.contrib.sessions.backends.cache'
ROOT_URLCONF = 'website.urls'
# Python dotted path to the WSGI application used by Django's runserver.