1 Star 1 Fork 1

庄泽锋/go-oneday

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
httpSession.go 1.03 KB
一键复制 编辑 原始数据 按行查看 历史
庄泽锋 提交于 2018-05-21 15:33 . 初始化
package main
import (
"net/http"
"fmt"
"./odsession"
"log"
)
var i int64 = 0
func readGoSession(w http.ResponseWriter, req *http.Request) {
c, err := req.Cookie(cookieName)
//cookie失效
if err != nil {
fmt.Fprintf(w, "nil")
return
}
s := manager.Session(c.Value)
fmt.Print(s.Load("test"))
fmt.Fprintf(w, c.Value)
}
func expireGoSession(w http.ResponseWriter, req *http.Request) {
c, _ := req.Cookie(cookieName)
s := manager.Session(c.Value)
manager.RemoveSession(s.SessionId(), w)
}
var manager odsession.Manager
const cookieName = "gosessionid"
const maxLifeTime = 1800
func HelloServer1(w http.ResponseWriter, req *http.Request) {
fmt.Fprint(w,"hello world")
}
func main() {
p := odsession.NewMemoryProvider()
manager, _ = odsession.NewManager(p, cookieName, maxLifeTime) //半个钟
http.HandleFunc("/test", HelloServer)
http.HandleFunc("/read", readGoSession)
http.HandleFunc("/expire", expireGoSession)
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal("ListenAndServe: ", err.Error())
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/1995zzf/go-oneday.git
git@gitee.com:1995zzf/go-oneday.git
1995zzf
go-oneday
go-oneday
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385