mongodb as Django sessions backend
Project description
- info:
mongodb as Django sessions backend
features
fast NoSQL Django sessions backend
invalidation via TTL
installation
run pip install django-mongo-sessions
set mongo_sessions.session as session engine:
SESSION_ENGINE = 'mongo_sessions.session'
settings
there is two ways to setup mongodb connection at settings.py
first, if already have mongo connection, like:
import pymongo from pymongo import MongoClient connection = MongoClient() MONGO_CLIENT = connection.your_database MONGO_SESSIONS_COLLECTION = 'mongo_sessions' # default option
second, if you need to connect to mongodb, like:
MONGO_PORT = 27017 MONGO_HOST = 'localhost' MONGO_DB_NAME = 'test' MONGO_DB_USER = False MONGO_DB_PASSWORD = False MONGO_SESSIONS_COLLECTION = 'mongo_sessions' # all this settings are defaults, you can skip any
expireAfterSeconds index value by default is SESSION_COOKIE_AGE you can change:
MONGO_SESSIONS_TTL = 60 * 60 # one hour
be sure, that you know what are you doing with it, SESSION_COOKIE_AGE will get different expiration time
every time you change one of this values, expireAfterSeconds index will be dropped and then will be indexed with ensureIndex again, be careful here
it is good way to change expireAfterSeconds only by 1 running instance
tests
pip install tox tox
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-mongo-sessions-0.0.4.tar.gz
.
File metadata
- Download URL: django-mongo-sessions-0.0.4.tar.gz
- Upload date:
- Size: 7.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b9e2b5661b12dd984af4a6e26a38e3054846ad3ea06af60bca878522f5599ced |
|
MD5 | cb717194c60306986a8312e2f06bf416 |
|
BLAKE2b-256 | 5b4bbb66c268f7f417360eb29b2f3244aaf9f9c1b7110b07b8a9528e97ee8148 |