boltstore/consts.go
2014-06-14 03:36:36 +09:00

12 lines
217 B
Go

package boltstore
import "time"
const (
defaultPath = "/"
defaultDBPath = "./sessions.db"
defaultBucketName = "sessions"
defaultBatchSize = 1000
defaultCheckInterval = 10 * time.Second
)