Files
EdgeCommon/pkg/serverconfigs/http_cache_storage_file.go

12 lines
330 B
Go
Raw Normal View History

2020-10-04 20:38:03 +08:00
package serverconfigs
2021-03-16 18:09:29 +08:00
// 文件缓存存储策略
2020-10-04 20:38:03 +08:00
type HTTPFileCacheStorage struct {
2021-03-16 18:09:29 +08:00
Dir string `yaml:"dir" json:"dir"` // 目录
MemoryPolicy *HTTPCachePolicy `yaml:"memoryPolicy" json:"memoryPolicy"` // 内存二级缓存
2020-10-04 20:38:03 +08:00
}
func (this *HTTPFileCacheStorage) Init() error {
return nil
}