内存存储

内存存储比较简单,性能也很高效,但没有持久化存储Session数据,因此应用程序重启之后便会丢失Session数据,可用于特定的业务场景中。gsession内存存储使用StorageMemory对象实现,

使用示例

  1. package main
  2. import (
  3. "github.com/gogf/gf/v2/frame/g"
  4. "github.com/gogf/gf/v2/net/ghttp"
  5. "github.com/gogf/gf/v2/os/gsession"
  6. "github.com/gogf/gf/v2/os/gtime"
  7. "time"
  8. )
  9. func main() {
  10. s := g.Server()
  11. s.SetSessionMaxAge(time.Minute)
  12. s.SetSessionStorage(gsession.NewStorageMemory())
  13. s.Group("/", func(group *ghttp.RouterGroup) {
  14. group.ALL("/set", func(r *ghttp.Request) {
  15. r.Session.MustSet("time", gtime.Timestamp())
  16. r.Response.Write("ok")
  17. })
  18. group.ALL("/get", func(r *ghttp.Request) {
  19. r.Response.Write(r.Session.Data())
  20. })
  21. group.ALL("/del", func(r *ghttp.Request) {
  22. _ = r.Session.RemoveAll()
  23. r.Response.Write("ok")
  24. })
  25. })
  26. s.SetPort(8199)
  27. s.Run()
  28. }

在该实例中,为了方便观察过期失效,我们将Session的过期时间设置为1分钟。执行后,

  1. 首先,访问 http://127.0.0.1:8199/set 设置一个Session变量;
  2. 随后,访问 http://127.0.0.1:8199/get 可以看到该Session变量已经设置并成功获取;
  3. 接着,我们停止程序,并重新启动,再次访问 http://127.0.0.1:8199/get ,可以看到Session变量已经没有了;