Rails 仅为来宾用户发送缓存页面
我是缓存方面的新手,所以这可能是显而易见的。
我想实现这样的目标:
用户未登录。他获取缓存页面。
用户已登录。他获得纯页面,而不是缓存页面。
类似的东西(伪代码):
caches_action :index, :if => !current_user
不幸的是,这不起作用,但我猜你会同意这个想法。
I am a newbie in caching so it might be obvious.
I want to achieve something like that:
User is not logged. He gets cached page.
User is logged in. He gets plain page, not cached one.
Something like that(pseudocode):
caches_action :index, :if => !current_user
Unfortunately this doesnt work, but I guess you go the idea.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以查看用户会话的缓存清理器。所以基本上你可以将其设置为创建 UserSession 时使缓存页面过期。关于扫地机的链接 Rails 文档非常好。
You can see up a Cache Sweeper for user sessions. So basically you can set it up as when a UserSession is created, expire the cache page. The linked Rails docs on sweepers is excellent.
解决方案:
caches_action :index, :unless => :当前用户
Solution:
caches_action :index, :unless => :current_user
由于页面缓存实际上保存了 Web 服务器直接获取的
.html
文件,完全绕过了 Rails,因此您不能使用此方法。更好的方法可能是有条件地缓存页面的内容。我通常实现一个
cache_if
方法,它包装了视图cache
方法,并且可以接受一个条件:使用时它看起来像这样:
Since page caching actually saves a
.html
file that the web server picks up directly, by-passing Rails entirely, you can't use this method.A better approach might be to cache the contents of the page conditionally. I usually implement a
cache_if
method that wraps around the viewcache
method and can take a condition:It would look like this when used: