在哪里定义 Sunspot/solr 配置?
我在 sunspot 文档中看到,要定义我应该使用的默认结果数:
Sunspot.config.pagination.default_per_page = 12
我尝试将该行添加到 application.rb 但它不起作用。我到底应该在哪里定义这个设置?
I see in the sunspot documentation that to define the default number of results I should use:
Sunspot.config.pagination.default_per_page = 12
I have tried adding that line to application.rb but it doesn't work. Where exactly should I define this setting?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将其放入初始化程序中,例如 config/initializers/sunspot.rb 即可正常工作!
Just put it in an initializer e.g.
config/initializers/sunspot.rb
and it will work fine!