mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-12-08 16:10:26 +08:00
12 lines
330 B
Go
12 lines
330 B
Go
package serverconfigs
|
|
|
|
// 文件缓存存储策略
|
|
type HTTPFileCacheStorage struct {
|
|
Dir string `yaml:"dir" json:"dir"` // 目录
|
|
MemoryPolicy *HTTPCachePolicy `yaml:"memoryPolicy" json:"memoryPolicy"` // 内存二级缓存
|
|
}
|
|
|
|
func (this *HTTPFileCacheStorage) Init() error {
|
|
return nil
|
|
}
|