Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Config ¶
type Config struct { // Lifetime is the duration to have access to a session before being // recycled. Default is 3600 seconds. Lifetime time.Duration // DSN is the database source name to the MySQL. DSN string // Table is the table name for storing session data. Default is "sessions". Table string // Encoder is the encoder to encode session data. Default is session.GobEncoder. Encoder session.Encoder // Decoder is the decoder to decode session data. Default is session.GobDecoder. Decoder session.Decoder // InitTable indicates whether to create a default session table when not exists automatically. InitTable bool // contains filtered or unexported fields }
Config contains options for the MySQL session store.
Click to show internal directories.
Click to hide internal directories.