Asp .Net Core 2.1で発生したメモリ漏洩
この問題が発生したのは数ヶ月前で、古いものです.Netcore mvcが書いたのは.Netcore 2.1.6の時にメモリの漏れを発見し、チェックしたのは閉鎖の問題によるものです.
問題が発生したコードは次のように似ています.
次のようになります.
変更後:
問題が解決する.
問題の原因は次のとおりです.
https://github.com/aspnet/EntityFrameworkCore/issues/14099
The issue here is, in order to perform client eval requested by user, we capture the closure. But closure also contains the DbContext hence memory is leaked. Easy work-around for now would be to use static method which wouldn't capture the instance of repository
簡単に言えば、新しいバージョンです.Netcoreはパフォーマンス向上のためにアクセスをキャッシュしていますが、このような閉パッケージがDbContextの漏洩を招いているので、参照の方法をstaticに変更すればいいですよ~~.
問題が発生したコードは次のように似ています.
public class XXXXXController : ControllerBase
{
protected XXXXContext context;
public ActionResult MatchList()
{
var matchs = context.Matches.Include(y => y.MatchBanner).OrderByDescending(x=>x.EndTime);
var recommends = context.Recommends.Include(y => y.Match);
return new JsonResult(matchs.Select(x => new
{
id = x.ID,
x.Title,
startTime = x.StartTime.ToString("yyyy-MM-dd"),
endTime = x.EndTime.ToString("yyyy-MM-dd"),
x.NeedVIP,
x.MatchDetail,
x.Price,
banner =x.MatchBanner.URL==null?GetImageUrl(x.MatchBanner.ID): x.MatchBanner.URL, //this line have a problem
}));
}
public string GetImageUrl(int? imageID)
{
return $"api/GuessWhat/ImageShow/{imageID}";
}
}
次のようになります.
banner =x.MatchBanner.URL==null?GetImageUrl(x.MatchBanner.ID): x.MatchBanner.URL,
変更後:
banner =x.MatchBanner.URL==null? $"api/GuessWhat/ImageShow/{x.MatchBanner.ID}" : x.MatchBanner.URL,
問題が解決する.
問題の原因は次のとおりです.
https://github.com/aspnet/EntityFrameworkCore/issues/14099
The issue here is, in order to perform client eval requested by user, we capture the closure. But closure also contains the DbContext hence memory is leaked. Easy work-around for now would be to use static method which wouldn't capture the instance of repository
簡単に言えば、新しいバージョンです.Netcoreはパフォーマンス向上のためにアクセスをキャッシュしていますが、このような閉パッケージがDbContextの漏洩を招いているので、参照の方法をstaticに変更すればいいですよ~~.