Rails 3 caches_page 写入文件,但在后续命中时不会从缓存中读取
我正在为我的应用程序实现基本页面缓存,即使我看到缓存正在写入,后续请求也不会从缓存文件中读取。
服务器日志报告缓存文件确实是在环境配置中定义的正确位置创建的。
我猜这与 Web 服务器有关,所以也许这对于标准 WEBrick 服务器来说是正常的?
I'm implementing basic page caching for my application and even though I see the cache being written, subsequent requests do not read from the cached file.
The server log reports that the cache file is indeed created in the proper location as defined in the environment configuration.
I'm guessing this is related to the web server, so maybe this is even normal from the standard WEBrick server?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Heroku 中也遇到过这个问题。 Heroku 通过建议您在控制器操作中设置 Cache-Control 标头来解决这个问题。这是他们给出的例子。
将会发生的事情是 Heroku 会获取标头并将页面缓存在 Varnish 中。这仅适用于 Aspen/Bamboo 堆栈,不适用于新的 Cedar 堆栈。
I've run into this with Heroku too. Heroku addresses this by recommending you set a Cache-Control header in your controller action. Here's the example they give.
What will happen is Heroku will pick up the header and cache the page in Varnish for you. This only applies to the Aspen/Bamboo stack, not the new Cedar stack.