我正在使用当前将虚拟路径映射到解决方案外部目录的VirtualPathProvider
。我正在建立这个主要是为了自我锻炼。这完全等同于在解决方案目录中具有软链接或NTFS硬链接。
无论如何,我设法使用我的自定义提供程序从该虚拟目录成功加载静态图像。
现在的问题是浏览器不会缓存图像。并且服务器甚至不考虑返回缓存信息(如ETag)。
以下是我所做的:
GetFile(path).Open()
通过FileStream
File.Open()
GetCacheKey
和GetCacheDependencies
GetFileHash
返回Murmur哈希(似乎是最快的,甚至比CRC-32还要测试)GetFileHash
CTRL-F5
仅返回以下标题(不引用缓存)
Cache-Control private
Content-Length 476
Content-Type image/png
Date Sat, 29 Dec 2012 21:25:54 GMT
Server Microsoft-IIS/8.0
X-AspNet-Version 4.0.30319
X-Powered-By ASP.NET
X-SourceFiles [...]
我目前正在调试Visual Studio的调试服务器和配备Firebug的Firefox。
举个例子,这是我的预期(http://i.stack.imgur.com/3mn3d.png)
Accept-Ranges bytes
Cache-Control max-age=315360000
Content-Length 1059
Content-Type image/png
Date Sat, 29 Dec 2012 21:35:29 GMT
Etag "7d636a8ef932ed081c16ace6f87b16e6"
Expires Fri, 12 Feb 2038 09:58:39 GMT
Last-Modified Tue, 14 Feb 2012 22:07:18 GMT
Server ECAcc (fcn/4089)
X-Cache HIT
问题很明显:如何让浏览器不重新加载这些静态资源?
答案 0 :(得分:0)
要缓存数据我通常以这种方式使用webconfig,这在我的个人建议中非常简单:
<system.webServer>
<staticContent>
<clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="180.00:00:00" />
</staticContent>
<caching>
<profiles>
<add extension=".ico" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".html" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".htm" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".pdf" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".bmp" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".jpeg" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".png" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".gif" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".js" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".css" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
<add extension=".jpg" policy="CacheUntilChange" kernelCachePolicy="DontCache" />
</profiles>
</caching>
</system.webServer>
我已经解决了所有问题。
你可以看一下使用相同技术的http://italiancallcenter.com或http://annunciando.biz,你可以在你的最后用萤火虫或镀铬物检查......
我从未优化的唯一内容是etags。
我希望那是有帮助的