Class SessionStore
Implement database session store.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, session_key=None) override ▶ 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 create_model_instance(self, data) Return a new instance of the session model object, which represents the current session state. Intended to be used for saving the session data to the database.
▶ 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 model(self) @cached_property @cached_property
def model(self)
▶ def save(self, must_create=False) override Save the current session data to the database. If 'must_create' is True, raise a database error if the saving operation doesn't create a new entry (as opposed to possibly updating an existing entry).
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.
@classmethod
def get_model_class(cls)