计数器缓存和 will_paginate
有没有办法强制 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 usingSELECT 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设有两个模型,
Author
和Comment
,其中Author
has_many
Comment
使用计数器缓存,您应该能够将选项:total_entries
传递给paginate
方法,如下所示:在此处查看更多信息:https://github.com/mislav/will_paginate/blob/master /lib/will_paginate/active_record.rb#L128
Assuming two models,
Author
andComment
, whereAuthor
has_many
Comment
s using counter cache, you should be able to pass an option:total_entries
to thepaginate
-method like this:See more here: https://github.com/mislav/will_paginate/blob/master/lib/will_paginate/active_record.rb#L128