mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-02 22:10:25 +08:00
12 lines
438 B
Go
12 lines
438 B
Go
// Copyright 2022 GoEdge goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package caches
|
|
|
|
const (
|
|
SuffixAll = "@GOEDGE_" // 通用后缀
|
|
SuffixWebP = "@GOEDGE_WEBP" // WebP后缀
|
|
SuffixCompression = "@GOEDGE_" // 压缩后缀 SuffixCompression + Encoding
|
|
SuffixMethod = "@GOEDGE_" // 请求方法后缀 SuffixMethod + RequestMethod
|
|
SuffixPartial = "@GOEDGE_partial" // 分区缓存后缀
|
|
)
|