mirror of
https://github.com/astaxie/beego.git
synced 2024-11-21 20:00:54 +00:00
big size file lead to memory leak
This commit is contained in:
parent
c265f6e49c
commit
8160059182
@ -68,6 +68,10 @@ func serverStaticRouter(ctx *context.Context) {
|
||||
http.ServeFile(ctx.ResponseWriter, ctx.Request, filePath)
|
||||
}
|
||||
return
|
||||
} else if fileInfo.Size() > int64(BConfig.WebConfig.StaticCacheFileSize) {
|
||||
//over size file serve with http module
|
||||
http.ServeFile(ctx.ResponseWriter, ctx.Request, filePath)
|
||||
return
|
||||
}
|
||||
|
||||
var enableCompress = BConfig.EnableGzip && isStaticCompress(filePath)
|
||||
|
Loading…
Reference in New Issue
Block a user