class documentation

BaseSessionStore is the base class for all session stores. BaseSessionStore is an ephemeral store implementation that doesn't persist the session data.

Method __init__ Undocumented
Method read Read the data from the session store.
Method save Persist the session store
Instance Variable _path Undocumented
Instance Variable _session_id Undocumented
Property _logger Undocumented
def __init__(self, path: str, session_id: str): (source)

Undocumented

def read(self) -> Dict[str, Any]: (source)

Read the data from the session store.

Returns
Dict[str, Any]A mapping containing the session store data.
def save(self): (source)

Persist the session store

Undocumented

_session_id = (source)

Undocumented