mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 06:10:55 +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)
|
http.ServeFile(ctx.ResponseWriter, ctx.Request, filePath)
|
||||||
}
|
}
|
||||||
return
|
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)
|
var enableCompress = BConfig.EnableGzip && isStaticCompress(filePath)
|
||||||
|
Loading…
Reference in New Issue
Block a user