Documentation ¶
Overview ¶
Package redis for session provider
depend on github.com/go-redis/redis
go install github.com/go-redis/redis
Usage: import(
_ "github.com/beego/beego/v2/server/web/session/redis_sentinel" "github.com/beego/beego/v2/server/web/session"
)
func init() { globalSessions, _ = session.NewManager("redis_sentinel", ``{"cookieName":"gosessionid","gclifetime":3600,"ProviderConfig":"127.0.0.1:26379;127.0.0.2:26379"}``) go globalSessions.GC() }
more detail about params: please check the notes on the function SessionInit in this package
Index ¶
- Variables
- type Provider
- func (rp *Provider) SessionAll() int
- func (rp *Provider) SessionDestroy(sid string) error
- func (rp *Provider) SessionExist(sid string) bool
- func (rp *Provider) SessionGC()
- func (rp *Provider) SessionInit(maxlifetime int64, savePath string) error
- func (rp *Provider) SessionRead(sid string) (session.Store, error)
- func (rp *Provider) SessionRegenerate(oldsid, sid string) (session.Store, error)
- type SessionStore
- func (rs *SessionStore) Delete(key interface{}) error
- func (rs *SessionStore) Flush() error
- func (rs *SessionStore) Get(key interface{}) interface{}
- func (rs *SessionStore) SessionID() string
- func (rs *SessionStore) SessionRelease(w http.ResponseWriter)
- func (rs *SessionStore) Set(key, value interface{}) error
Constants ¶
This section is empty.
Variables ¶
var DefaultPoolSize = sentinel.DefaultPoolSize
DefaultPoolSize redis_sentinel default pool size
Functions ¶
This section is empty.
Types ¶
type Provider ¶
Provider redis_sentinel session provider
func (*Provider) SessionAll ¶
SessionAll return all activeSession
func (*Provider) SessionDestroy ¶
SessionDestroy delete redis session by id
func (*Provider) SessionExist ¶
SessionExist check redis_sentinel session exist by sid
func (*Provider) SessionInit ¶
SessionInit init redis_sentinel session savepath like redis sentinel addr,pool size,password,dbnum,masterName e.g. 127.0.0.1:26379;127.0.0.2:26379,100,1qaz2wsx,0,mymaster
func (*Provider) SessionRead ¶
SessionRead read redis_sentinel session by sid
type SessionStore ¶
type SessionStore sentinel.SessionStore
SessionStore redis_sentinel session store
func (*SessionStore) Delete ¶
func (rs *SessionStore) Delete(key interface{}) error
Delete value in redis_sentinel session
func (*SessionStore) Flush ¶
func (rs *SessionStore) Flush() error
Flush clear all values in redis_sentinel session
func (*SessionStore) Get ¶
func (rs *SessionStore) Get(key interface{}) interface{}
Get value in redis_sentinel session
func (*SessionStore) SessionID ¶
func (rs *SessionStore) SessionID() string
SessionID get redis_sentinel session id
func (*SessionStore) SessionRelease ¶
func (rs *SessionStore) SessionRelease(w http.ResponseWriter)
SessionRelease save session values to redis_sentinel
func (*SessionStore) Set ¶
func (rs *SessionStore) Set(key, value interface{}) error
Set value in redis_sentinel session