从 XPCOM 组件添加条目到 Firefox 缓存

发布于 2024-08-13 07:55:16 字数 149 浏览 6 评论 0原文

nsICacheSession 有一个方法 openCacheEntry(),它返回现有的缓存条目。是否有诸如 createCacheEntry() 之类的方法可以创建缓存条目。我想创建一个 XPCOM 对象,它将从磁盘读取文件并将其写入 Firefox 缓存。

谢谢

The nsICacheSession has a method openCacheEntry() which returns an existing cache entry. Is there a method such as createCacheEntry() that will create a cache entry. I want to create an XPCOM object that will read files from disk and write them to Firefox cache.

Thanks

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

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

发布评论

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

评论(1

如 MDC nsICache 接口参考中所述,使用 ACCESS_WRITE 打开条目如果该条目尚不存在,则将创建该条目(如果已存在,则该条目将被取消,因此您可以用新条目替换它)。

对于原始海报来说可能有点太晚了,但这对于其他人来说可能很有用。

As stated in MDC nsICache interface reference opening an entry with ACCESS_WRITE will create the entry if it doesn't already exist (if it already exists, the entry will be doomed so you can replace it with a new one).

Perhaps a little too late for the original poster, but this can be useful for other people out there.

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