Documentation
      ¶
    
    
  
    
  
    Overview ¶
Package redis for session provider
depend on github.com/garyburd/redigo/redis
go install github.com/garyburd/redigo/redis
Usage: import(
_ "github.com/go-siris/siris/sessions/redis" "github.com/go-siris/siris/sessions"
)
func init() {
	globalSessions, _ = sessions.NewManager("redis", ``{"cookieName":"gosessionid","gclifetime":3600,"ProviderConfig":"127.0.0.1:7070"}``)
	go globalSessions.GC()
}
more docs: http://beego.me/docs/module/sessions.md
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) (sessions.Store, error)
 - func (rp *Provider) SessionRegenerate(oldsid, sid string) (sessions.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 MaxPoolSize = 100
    MaxPoolSize redis max pool size
Functions ¶
This section is empty.
Types ¶
type Provider ¶
type Provider struct {
	// contains filtered or unexported fields
}
    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 e.g. 127.0.0.1:6379,100,astaxie,0
func (*Provider) SessionRead ¶
SessionRead read redis session by sid
type SessionStore ¶
type SessionStore struct {
	// contains filtered or unexported fields
}
    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
      
      Source Files
      ¶
    
- sess_redis.go