我有一个专用于下载文件的控制器,如下所示:
public ActionResult Download( string ids )
{
MyFileModel myfile = new MyFileModel(ids);
Stream s = myfile.GetStream();
return File( s, contentType, newFileName );
}
我看到File
从返回是FileStreamResult
但我的 RAM 已满(我有 8GB 并下载 raeches 7GB)和 CPU 100%
如何优化下载?