IgnoreKey 忽略某个Key,即不缓存某个Key
(key string, maxSize int64)
| 992 | |
| 993 | // IgnoreKey 忽略某个Key,即不缓存某个Key |
| 994 | func (this *FileStorage) IgnoreKey(key string, maxSize int64) { |
| 995 | this.ignoreKeys.Push(types.String(maxSize) + "$" + key) |
| 996 | } |
| 997 | |
| 998 | // CanSendfile 是否支持Sendfile |
| 999 | func (this *FileStorage) CanSendfile() bool { |