计数器缓存和 will_paginate

发布于 2024-12-17 22:22:47 字数 158 浏览 1 评论 0原文

有没有办法强制 will_paginate 插件使用 counter_cache 而不是使用 SELECT count(*) 查询?我听说 Model.count 默认使用计数器缓存。所以will_paginate必须使用size方法。如何更改它收集要分页的对象数量的方式?

Is there any way to force will_paginate plugin to use counter_cache instead of using
SELECT count(*) query? I've heard that Model.count is using by default counter caches. So will_paginate must use size method. How I can change the way it gathers amount of objects to be paginated?

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

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

发布评论

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

评论(1

迟月 2024-12-24 22:22:47

假设有两个模型,AuthorComment,其中 Author has_many Comment 使用计数器缓存,您应该能够将选项 :total_entries 传递给 paginate 方法,如下所示:

author = Author.first
posts  = author.posts.paginate :total_entries => author.posts_count

在此处查看更多信息:https://github.com/mislav/will_paginate/blob/master /lib/will_paginate/active_record.rb#L128

Assuming two models, Author and Comment, where Author has_many Comments using counter cache, you should be able to pass an option :total_entries to the paginate-method like this:

author = Author.first
posts  = author.posts.paginate :total_entries => author.posts_count

See more here: https://github.com/mislav/will_paginate/blob/master/lib/will_paginate/active_record.rb#L128

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