License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
MongoDB based HTTP session store.
Duration expirationTime() @property @safe constThe duration without access after which a session expires.Session create() @safeSession open(string id) @safebool isKeySet(string id, string key) @safevoid remove(string id, string key) @safevoid destroy(string id) @safeint iterateSession(string id, scope int delegate(string key) @safe del) @safethis(string url, string collection = "sessions")Constructs a new MongoDB session store.this(MongoDatabase db, string collection = "sessions")Constructs a new MongoDB session store using an existing DB.this(MongoCollection collection)Constructs a new MongoDB session store using a collection object.SessionEntry