mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
13 lines
226 B
Go
13 lines
226 B
Go
package cache
|
|
|
|
import "context"
|
|
|
|
// PreLoadItem 预加载数据项
|
|
type PreLoadItem struct {
|
|
Key string
|
|
Value any
|
|
}
|
|
|
|
// PreloadFunc 数据预加载函数定义
|
|
type PreloadFunc func(context.Context) ([]PreLoadItem, error)
|