mirror of
https://github.com/kataras/iris.git
synced 2025-12-17 18:07:01 +00:00
Update to 8.2.1 | LevelDB-based session database implemented, Read HISTORY.md
Former-commit-id: 4e341b185aedaaa9a04fdebe43b4364dec59e3c8
This commit is contained in:
@@ -12,6 +12,8 @@ import (
|
||||
|
||||
func main() {
|
||||
db, _ := boltdb.New("./sessions/sessions.db", 0666, "users")
|
||||
// use different go routines to sync the database
|
||||
db.Async(true)
|
||||
|
||||
// close and unlock the database when control+C/cmd+C pressed
|
||||
iris.RegisterOnInterrupt(func() {
|
||||
@@ -20,7 +22,7 @@ func main() {
|
||||
|
||||
sess := sessions.New(sessions.Config{
|
||||
Cookie: "sessionscookieid",
|
||||
Expires: 1 * time.Minute, // <=0 means unlimited life
|
||||
Expires: 45 * time.Minute, // <=0 means unlimited life
|
||||
})
|
||||
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user