Versions Compared
compared with
Key
- This line was added.
- This line was removed.
- Formatting was changed.
文件存储
在默认情况下,ghttp.Server
的Session
存储使用了内存+文件
的方式,使用StorageFile
对象实现。具体原理为:
Session
的数据操作完全基于内存;- 使用
gcache
进程缓存模块控制数据过期; - 使用文件存储持久化存储管理
Session
数据; - 当且仅有当
Session
被标记为dirty
时(数据有更新)才会执行Session
序列化并执行文件持久化存储; - 当且仅当内存中的
Session
不存在时,才会从文件存储中反序列化恢复Session
数据到内存中,降低IO
调用; - 序列化/反序列化使用的是标准库的
json.Marshal/UnMarshal
方法;
从原理可知,当Session
为读多写少的场景中,Session
的数据操作非常高效。
Tip |
---|
有个注意的细节,由于文件存储涉及到文件操作,为便于降低 |
使用示例
https://github.com/gogf/gf/v2/blob/master/.example/os/gsession/storage-file/file.go
Code Block | ||
---|---|---|
| ||
package main import ( "github.com/gogf/gf/v2/frame/g" "github.com/gogf/gf/v2/net/ghttp" "github.com/gogf/gf/v2/os/gtime" "time" ) func main() { s := g.Server() s.SetConfigWithMap(g.Map{ "SessionMaxAge": SetSessionMaxAge(time.Minute, }) s.Group("/", func(group *ghttp.RouterGroup) { group.ALL("/set", func(r *ghttp.Request) { r.Session.Set("time", gtime.Timestamp()) r.Response.Write("ok") }) group.ALL("/get", func(r *ghttp.Request) { r.Response.Write(r.Session.MapData()) }) group.ALL("/del", func(r *ghttp.Request) { _ = r.Session.ClearRemoveAll() r.Response.Write("ok") }) }) s.SetPort(8199) s.Run() } |
在该实例中,为了方便观察过期失效,我们将Session
的过期时间设置为1分钟
。执行后,
- 首先,访问 http://127.0.0.1:8199/set 设置一个
Session
变量; - 随后,访问 http://127.0.0.1:8199/get 可以看到该
Session
变量已经设置并成功获取; - 接着,我们停止程序,并重新启动,再次访问 http://127.0.0.1:8199/get ,可以看到
Session
变量已经从文件存储中恢复; - 等待1分钟后,再次访问 http://127.0.0.1:8199/get 可以看到已经无法获取该
Session
,因为该Session
已经过期;
Panel | ||
---|---|---|
| ||
|