how do i cache FileContentResult for performance? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T19:03:12Zhttp://stackoverflow.com/feeds/question/796704http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/796704/how-do-i-cache-filecontentresult-for-performance3how do i cache FileContentResult for performance?cottsak2009-04-28T07:52:15Z2009-05-05T15:39:31Z
<p>Presently i have the following action to return files (images, PDF's, etc) from my DB:</p>
<pre><code> //
// GET: /FileManager/GetFile/ID
[OutputCache(Duration = 600, VaryByParam = "ID")]
public ActionResult GetFile(int ID)
{
FileService svc = new FileService(new SqlFileRepository(base.ConnectionString));
KsisOnline.Data.File result = svc.GetFileByID(ID);
return File(result.Data, result.MimeType, result.UploadFileName);
}
</code></pre>
<p>I'm using the <code>OutputCache</code> attribute but i dont know if i'm using it correctly or how to optimise it for this purpose.</p>
<p>As the code stands, i appear to get cache functionality in Firefox(3) but not IE(7). For some reason IE is requesting the image from the DB every time (which is killer bad obviously) and i dont know how to fix it. Sure IE doesn't support standards properly but maybe i'm still not following some preferred caching conventions. I'd really appreciate some help with this so i get minimal DB hits and caching support cross browser.</p>
<p><strong>EDIT:</strong>
To see the code above in action or to profile it yourself with browsers/tools, refer to <a href="http://ksischool.com/Announcements/56" rel="nofollow">this link</a>.</p>
http://stackoverflow.com/questions/796704/how-do-i-cache-filecontentresult-for-performance/796804#7968041Answer by Anton Gogolev for how do i cache FileContentResult for performance?Anton Gogolev2009-04-28T08:27:17Z2009-04-28T08:27:17Z<p>You need to use <a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">Fiddler</a> to see what HTTP headers are sent by IE and your applications how these are different from ones for Firefox. What you have to have is to make browser send <code>If-Modified-Since</code> header (and possibly an <code>ETag</code>) header and your app should respond with HTTP 302 status.</p>
http://stackoverflow.com/questions/796704/how-do-i-cache-filecontentresult-for-performance/825488#8254881Answer by Fujiy for how do i cache FileContentResult for performance?Fujiy2009-05-05T15:39:31Z2009-05-05T15:39:31Z<p>Try use ServerAndClient location:</p>
<p>[OutputCache(Duration=600, VaryByParam="ID", Location=OutputCacheLocation.ServerAndClient)]</p>