cedar-router的一个session组件。
2个方法Set(string,interface{})Get(string)interface{}使用方法r:=cedar.NewRouter()
x:=cedar_session.NewSession(r)
x继承所有的httpmethod和group ,只是有些小改动,不能直接使用,只能在httpmethod中使用
从之前的
r.Get("/",func(whttp.ResponseWriter,r*http.Request,nil)r.Group("/a",func(groups*cedar.Groups){}到现在的
x.Get("/",func(whttp.ResponseWriter,r*http.Request,scedar_session.Session),nil)x.Group("/a",func(groups*cedar_session.TheGroup){}改了参数,更多 例子 ,现在使用的是系统自带的map,可能以后会换成 spruce ,分布式的kv数据库
例子
r:=cedar.NewRouter()x:=cedar_session.NewSession(r)x.Get("/set",func(whttp.ResponseWriter,r*http.Request,scedar_session.Session){s.Set("hello","world"+r.RemoteAddr)//设置sessions.Get("hello")//获取sessionw.Write([]byte("hellosession"))},nil)
评论