This is a session backend for Django that stores sessions in Cassandra, using the pycassa library.
Project description
This is a session backend for Django that stores sessions in Cassandra, using the pycassa library.
Installing django-cassandra-sessions
Either download the tarball and run python setup.py install, or simply use easy install or pip like so easy_install django-cassandra-sessions.
Set cassandra_sessions as your session engine, like so:
SESSION_ENGINE = 'cassandra_sessions'
(optional) Add settings describing where to connect to Cassandra:
CASSANDRA_HOSTS = ['127.0.0.1:9160',] CASSANDRA_SESSIONS_KEYSPACE = 'Keyspace1' CASSANDRA_SESSIONS_COLUMN_FAMILY = 'Standard1'