Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var (
DefaultFileMode = 0755
)
DefaultFileMode used as the default database's "fileMode" for creating the sessions directory path, opening and write the session file.
Functions ¶
This section is empty.
Types ¶
type Database ¶
type Database struct { // Service is the underline badger database connection, // it's initialized at `New` or `NewFromDB`. // Can be used to get stats. Service *badger.DB }
Database the badger(key-value file-based) session storage.
func New ¶
New creates and returns a new badger(key-value file-based) storage instance based on the "directoryPath". DirectoryPath should is the directory which the badger database will store the sessions, i.e ./sessions
It will remove any old session files.
func NewFromDB ¶
NewFromDB same as `New` but accepts an already-created custom badger connection instead.
func (*Database) Async ¶
Async is DEPRECATED if it was true then it could use different to update the back-end storage, now it does nothing.
func (*Database) Cleanup ¶
Cleanup removes any invalid(have expired) session entries, it's being called automatically on `New` as well.
func (*Database) Load ¶
func (db *Database) Load(sid string) (storeDB sessions.RemoteStore)
Load loads the sessions from the badger(key-value file-based) session storage.
func (*Database) Sync ¶
func (db *Database) Sync(p sessions.SyncPayload)
Sync syncs the database with the session's (memory) store.