Hi, I am using Quixote with sessions stored in a Durus database. To get information on all sessions, I can write root = get_session_manager().store.connection.get_root() session_ids = root.items()[0][1].keys() session_values = root.items()[0][1].values() What is the most direct way of getting all active sessions independent of the way you store sessions? Thanks in advance, Ernie