Documentation ¶
Index ¶
- Variables
- type Database
- func (db *Database) Acquire(sid string, expires time.Duration) (lifetime sessions.LifeTime)
- func (db *Database) Clear(sid string)
- func (db *Database) Close() error
- func (db *Database) Delete(sid string, key string) (deleted bool)
- func (db *Database) Get(sid string, key string) (value interface{})
- func (db *Database) Len(sid string) (n int)
- func (db *Database) Release(sid string)
- func (db *Database) Set(sid string, lifetime sessions.LifeTime, key string, value interface{}, ...)
- func (db *Database) Visit(sid string, cb func(key string, value interface{}))
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 boltdb(file-based) storage.
Functions ¶
This section is empty.
Types ¶
type Database ¶
type Database struct { // Service is the underline BoltDB database connection, // it's initialized at `New` or `NewFromDB`. // Can be used to get stats. Service *bolt.DB // contains filtered or unexported fields }
Database the BoltDB(file-based) session storage.
func New ¶
New creates and returns a new BoltDB(file-based) storage instance based on the "path". Path should include the filename and the directory(aka fullpath), i.e sessions/store.db.
It will remove any old session files.
func NewFromDB ¶
NewFromDB same as `New` but accepts an already-created custom boltdb connection instead.
func (*Database) Acquire ¶
Acquire receives a session's lifetime from the database, if the return value is LifeTime{} then the session manager sets the life time based on the expiration duration lives in configuration.
func (*Database) Release ¶
Release destroys the session, it clears and removes the session entry, session manager will create a new session ID on the next request after this call.