github.com/TeaOSLab/EdgeNode@v1.3.8/internal/caches/consts.go (about) 1 // Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved. 2 3 package caches 4 5 const ( 6 SuffixAll = "@GOEDGE_" // 通用后缀 7 SuffixWebP = "@GOEDGE_WEBP" // WebP后缀 8 SuffixCompression = "@GOEDGE_" // 压缩后缀 SuffixCompression + Encoding 9 SuffixMethod = "@GOEDGE_" // 请求方法后缀 SuffixMethod + RequestMethod 10 SuffixPartial = "@GOEDGE_partial" // 分区缓存后缀 11 )