使用本地存储缓存 XAP 文件

发布于 2025-01-08 17:06:11 字数 102 浏览 0 评论 0原文

我正在尝试使用现代浏览器的 localStorage(而不是 Silverlight 独立存储)来缓存 Silverlight XAP 文件,以节省下载时间。

有什么想法吗?

I'm trying to cache Silverlight XAP files using modern browsers' localStorage - not Silverlight Isolated Storage - to save download time.

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

贪了杯 2025-01-15 17:06:11

XAP 文件由浏览器自动缓存,并且(假设您不清除缓存)在您下次运行应用程序时不会再次下载。

您可以通过检查项目设置中的“使用应用程序库缓存减少 XAP 大小”选项并确保您使用的任何第三方程序集具有 extmap 文件来提高下载速度。这将为解决方案中的每个项目创建一个单独的 XAP 文件,并将第 3 方程序集放入所有 XAP 文件共享的 zip 文件中。

这应该 a) 减少应用程序所需的每个 XAP 文件的大小,b) 仅需要在应用程序下次运行时下载更新的程序集和/或项目。

XAP files are automatically cached by the browser and (assuming you don't clear the cache) not downloaded again when you next run the application.

You can improve download speed by checking the "Reduce XAP size by using application library caching" option in the project settings and making sure that any third party assemblies you use have extmap files. This will create a separate XAP file for each project in your solution and put the 3rd party assemblies into zip files shared by all XAP files.

This should a) reduce the size of each XAP file your application needs and b) only require updated assemblies and/or projects to be downloaded next time your application runs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文