mirror of
https://github.com/bufanyun/hotgo.git
synced 2025-09-17 08:46:39 +08:00
9 lines
194 B
Go
9 lines
194 B
Go
package handler
|
|
|
|
import "github.com/gogf/gf/v2/database/gdb"
|
|
|
|
// ForceCache 强制缓存
|
|
func ForceCache(m *gdb.Model) *gdb.Model {
|
|
return m.Cache(gdb.CacheOption{Duration: -1, Force: true})
|
|
}
|