mysql

package
v1.7.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 5, 2016 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Overview

Package mysql for session provider

depends on github.com/go-sql-driver/mysql:

go install github.com/go-sql-driver/mysql

mysql session support need create table as sql:

CREATE TABLE `session` (
`session_key` char(64) NOT NULL,
`session_data` blob,
`session_expiry` int(11) unsigned NOT NULL,
PRIMARY KEY (`session_key`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

Usage: import(

_ "github.com/astaxie/beego/session/mysql"
"github.com/astaxie/beego/session"

)

func init() {
	globalSessions, _ = session.NewManager("mysql", ``{"cookieName":"gosessionid","gclifetime":3600,"ProviderConfig":"[username[:password]@][protocol[(address)]]/dbname[?param1=value1&...&paramN=valueN]"}``)
	go globalSessions.GC()
}

more docs: http://beego.me/docs/module/session.md

Index

Constants

This section is empty.

Variables

View Source
var (
	// TableName store the session in MySQL
	TableName = "session"
)

Functions

This section is empty.

Types

type Provider added in v1.6.0

type Provider struct {
	// contains filtered or unexported fields
}

Provider mysql session provider

func (*Provider) SessionAll added in v1.6.0

func (mp *Provider) SessionAll() int

SessionAll count values in mysql session

func (*Provider) SessionDestroy added in v1.6.0

func (mp *Provider) SessionDestroy(sid string) error

SessionDestroy delete mysql session by sid

func (*Provider) SessionExist added in v1.6.0

func (mp *Provider) SessionExist(sid string) bool

SessionExist check mysql session exist

func (*Provider) SessionGC added in v1.6.0

func (mp *Provider) SessionGC()

SessionGC delete expired values in mysql session

func (*Provider) SessionInit added in v1.6.0

func (mp *Provider) SessionInit(maxlifetime int64, savePath string) error

SessionInit init mysql session. savepath is the connection string of mysql.

func (*Provider) SessionRead added in v1.6.0

func (mp *Provider) SessionRead(sid string) (session.Store, error)

SessionRead get mysql session by sid

func (*Provider) SessionRegenerate added in v1.6.0

func (mp *Provider) SessionRegenerate(oldsid, sid string) (session.Store, error)

SessionRegenerate generate new sid for mysql session

type SessionStore added in v1.6.0

type SessionStore struct {
	// contains filtered or unexported fields
}

SessionStore mysql session store

func (*SessionStore) Delete added in v1.6.0

func (st *SessionStore) Delete(key interface{}) error

Delete value in mysql session

func (*SessionStore) Flush added in v1.6.0

func (st *SessionStore) Flush() error

Flush clear all values in mysql session

func (*SessionStore) Get added in v1.6.0

func (st *SessionStore) Get(key interface{}) interface{}

Get value from mysql session

func (*SessionStore) SessionID added in v1.6.0

func (st *SessionStore) SessionID() string

SessionID get session id of this mysql session store

func (*SessionStore) SessionRelease added in v1.6.0

func (st *SessionStore) SessionRelease(w http.ResponseWriter)

SessionRelease save mysql session values to database. must call this method to save values to database.

func (*SessionStore) Set added in v1.6.0

func (st *SessionStore) Set(key, value interface{}) error

Set value in mysql session. it is temp value in map.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL