class documentation

class VolatileSessionStore(SessionStore):

Constructor: VolatileSessionStore()

View In Hierarchy

A simple volatile (non-persistent) session store for session3.

Method __init__ Create the dictionary.
Method delete_session Delete the session in the dictionary.
Method has_session Return true if the session exists in the dictionary, else false.
Method load_session Return the session if it exists, else return 'default'.
Method save_session Save the session in the dictionary..
Class Variable is_multiprocess_safe Undocumented
Class Variable is_thread_safe Undocumented
Instance Variable sessions Undocumented
def __init__(self):

Create the dictionary.

def delete_session(self, session):

Delete the session in the dictionary.

def has_session(self, id):

Return true if the session exists in the dictionary, else false.

def load_session(self, id, default=None):

Return the session if it exists, else return 'default'.

def save_session(self, session):

Save the session in the dictionary..

is_multiprocess_safe: bool =

Undocumented

is_thread_safe: bool =

Undocumented

sessions: dict =

Undocumented