我正在使用当前将虚拟路径映射到解决方案外部目录的VirtualPathProvider
。我建造这个主要是为了自我锻炼。这完全等效于在解决方案的目录中具有软链接或 NTFS 硬链接。
无论如何,我设法使用我的自定义提供程序从该虚拟目录成功加载静态图像。
现在的问题是浏览器不会缓存图像。服务器甚至不考虑返回缓存信息(如 ETag)。
这是我所做的:
GetFile(path).Open()
通过File.Open()
返回FileStream
- 我没有覆盖
GetCacheKey
和GetCacheDependencies
- 我确实覆盖了返回 Murmur 哈希
GetFileHash
(似乎是最快的,甚至比 CRC-32 还要快)并对其进行了测试 - 调试时,从不在我的提供程序中调用
GetFileHash
CTRL-F5
ing 仅返回以下标头(不引用缓存)
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中进行调试。
例如,这是我的期望(https://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
问题很明显:如何让浏览器不重新加载这些静态资源?
为了缓存数据,我通常以这种方式使用 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,你可以在Firebug或Chrome中检查你的最后。
我唯一从未优化的是电子标签。
我希望这是有帮助的