Documentation ¶
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 ¶
View Source
var MaxPoolSize = bhojpurRedis.MaxPoolSize
MaxPoolSize redis max pool size
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider bhojpurRedis.Provider
Provider redis session provider
func (*Provider) SessionAll ¶
SessionAll return all activeSession
func (*Provider) SessionDestroy ¶
SessionDestroy delete redis session by id
func (*Provider) SessionExist ¶
SessionExist check redis session exist by sid
func (*Provider) SessionInit ¶
SessionInit init redis session savepath like redis server addr,pool size,password,dbnum,IdleTimeout second e.g. 127.0.0.1:6379,100,bhojpur,0,30
func (*Provider) SessionRead ¶
SessionRead read redis session by sid
type SessionStore ¶
type SessionStore bhojpurRedis.SessionStore
SessionStore redis session store
func (*SessionStore) Delete ¶
func (rs *SessionStore) Delete(key interface{}) error
Delete value in redis session
func (*SessionStore) Flush ¶
func (rs *SessionStore) Flush() error
Flush clear all values in redis session
func (*SessionStore) Get ¶
func (rs *SessionStore) Get(key interface{}) interface{}
Get value in redis session
func (*SessionStore) SessionID ¶
func (rs *SessionStore) SessionID() string
SessionID get redis session id
func (*SessionStore) SessionRelease ¶
func (rs *SessionStore) SessionRelease(w http.ResponseWriter)
SessionRelease save session values to redis
func (*SessionStore) Set ¶
func (rs *SessionStore) Set(key, value interface{}) error
Set value in redis session
Click to show internal directories.
Click to hide internal directories.