Class SessionStore
A cache-based session store.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, session_key=None) override @property
def cache_key(self)
▶ def create(self) overrideinherited doc Create a new session instance. Guaranteed to create a new object with a unique key and will have saved the result once (with empty data) before the method returns.
▶ def delete(self, session_key=None) overrideinherited doc Delete the session data under this key. If the key is None, use the current session key value.
▶ def exists(self, session_key) overrideinherited doc Return True if the given session_key already exists.
▶ def load(self) overrideinherited doc Load the session data and return a dictionary.
▶ def save(self, must_create=False) overrideinherited doc Save the session data. If 'must_create' is True, create a new session object (or raise CreateError). Otherwise, only update an existing object and don't create one (raise UpdateError if needed).
Class methods
▶ def clear_expired(cls) override @classmethodinherited doc Remove expired sessions from the session store.
@classmethod
def clear_expired(cls)
This method overrides django.contrib.sessions.backends.base.SessionBase.clear_expired.
If this operation isn't possible on a given backend, it should raise
NotImplementedError. If it isn't necessary, because the backend has
a built-in expiration mechanism, it should be a no-op.