License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.
MongoDB based HTTP session store.
Session create()Session open(string id)bool isKeySet(string id, string key)void remove(string id, string key)void destroy(string id)int iterateSession(string id, scope int delegate(string key) @safe del)this(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