Class SessionStore
Implement cached, database backed sessions.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, session_key=None) override @property
def cache_key(self)
▶ 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 flush(self) override Remove the current session data from the database and regenerate the key.
▶ def load(self) overrideinherited doc Load the session data and return a dictionary.
▶ def save(self, must_create=False) overrideinherited doc 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).