當前位置: 首頁>>代碼示例>>Golang>>正文


Golang sessions.GetRegistry函數代碼示例

本文整理匯總了Golang中github.com/gorilla/sessions.GetRegistry函數的典型用法代碼示例。如果您正苦於以下問題:Golang GetRegistry函數的具體用法?Golang GetRegistry怎麽用?Golang GetRegistry使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了GetRegistry函數的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1: Get

func (s *leveldbStore) Get(r *http.Request, name string) (*sessions.Session, error) {
	return sessions.GetRegistry(r).Get(s, name)
}
開發者ID:Iceyer,項目名稱:gutils,代碼行數:3,代碼來源:leveldb_session.go

示例2: Get

// Get returns a session for the given name after adding it to the registry.
//
func (s *MemoryStore) Get(r *http.Request, name string) (*sessions.Session, error) {
	Log.Info("MemoryStore Get()")
	return sessions.GetRegistry(r).Get(s, name)
}
開發者ID:mchobits,項目名稱:go-blog,代碼行數:6,代碼來源:memory_store.go

示例3: Get

//Implementation of gorilla/sessions.Store interface
// Get registers and returns a session for the given name and session store.
// It returns a new session if there are no sessions registered for the name.
func (d *dalStore) Get(r *http.Request, name string) (*gSessions.Session, error) {
	return gSessions.GetRegistry(r).Get(d, name)
}
開發者ID:ShaneBurkhart,項目名稱:negroni-sessions,代碼行數:6,代碼來源:main.go

示例4: Get

//Implementation of gorilla/sessions.Store interface
// Get registers and returns a session for the given name and session store.
// It returns a new session if there are no sessions registered for the name.
func (m *mongoStore) Get(r *http.Request, name string) (*gSessions.Session, error) {
	return gSessions.GetRegistry(r).Get(m, name)
}
開發者ID:GoIncremental,項目名稱:negroni-sessions,代碼行數:6,代碼來源:main.go

示例5: Get

// Get Fetches a session for a given name after it has been added to the
// registry.
func (db *PGStore) Get(r *http.Request, name string) (*sessions.Session, error) {
	return sessions.GetRegistry(r).Get(db, name)
}
開發者ID:starkandwayne,項目名稱:shield,代碼行數:5,代碼來源:pgstore.go

示例6: Get

// Get returns a session for the given name after adding it to the registry.
//
// It returns a new session if the sessions doesn't exist. Access IsNew on
// the session to check if it is an existing session or a new one.
//
// It returns a new session and an error if the session exists but could
// not be decoded.
func (s *SentinelFailoverStore) Get(r *http.Request, name string) (*sessions.Session, error) {
	return sessions.GetRegistry(r).Get(s, name)
}
開發者ID:stackdocker,項目名稱:http-session-redis-sentinel-backend,代碼行數:10,代碼來源:httpsessionstore.go

示例7: Get

func (m *SqliteStore) Get(r *http.Request, name string) (*sessions.Session, error) {
	return sessions.GetRegistry(r).Get(m, name)
}
開發者ID:starkandwayne,項目名稱:shield,代碼行數:3,代碼來源:sqlitestore.go

示例8: Get

// Get returns a session for the given name after adding it to the registry.
//
// See CookieStore.Get().
func (s *MemcacheDatastoreStore) Get(r *http.Request, name string) (
	*sessions.Session, error) {
	return sessions.GetRegistry(r).Get(s, name)
}
開發者ID:hnakamur,項目名稱:gaesessions,代碼行數:7,代碼來源:sessions.go


注:本文中的github.com/gorilla/sessions.GetRegistry函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。