Rails 仅为来宾用户发送缓存页面

发布于 2024-12-12 04:49:38 字数 251 浏览 0 评论 0原文

我是缓存方面的新手,所以这可能是显而易见的。

我想实现这样的目标:

  1. 用户未登录。他获取缓存页面。

  2. 用户已登录。他获得纯页面,而不是缓存页面。

类似的东西(伪代码):

caches_action :index, :if => !current_user

不幸的是,这不起作用,但我猜你会同意这个想法。

I am a newbie in caching so it might be obvious.

I want to achieve something like that:

  1. User is not logged. He gets cached page.

  2. 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 技术交流群。

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

发布评论

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

评论(3

街角卖回忆 2024-12-19 04:49:39

您可以查看用户会话的缓存清理器。所以基本上你可以将其设置为创建 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.

秋风の叶未落 2024-12-19 04:49:39

解决方案:

caches_action :index, :unless => :当前用户

Solution:

caches_action :index, :unless => :current_user

绝對不後悔。 2024-12-19 04:49:38

由于页面缓存实际上保存了 Web 服务器直接获取的 .html 文件,完全绕过了 Rails,因此您不能使用此方法。

更好的方法可能是有条件地缓存页面的内容。我通常实现一个 cache_if 方法,它包装了视图 cache 方法,并且可以接受一个条件:

def cache_if(condition, *options, &block)
  if (!condition)
    yield
  else
    cache(*options, &block)
  end
end

使用时它看起来像这样:

<% cache_if(!current_user, '#content') %>
...
<% end %>

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 view cache method and can take a condition:

def cache_if(condition, *options, &block)
  if (!condition)
    yield
  else
    cache(*options, &block)
  end
end

It would look like this when used:

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