我在使用 Elasticsearch、Tire 和 Kaminari 对搜索结果进行分页时遇到问题。
我正在搜索我的应用程序(新闻、绘画、书籍)中的所有模型作为一般站点搜索,因此,在我的站点控制器中需要一个用于轮胎搜索的块,以便进行更细粒度的控制,例如显示超过默认值10 个条目:
class SiteController < ApplicationController
def search
# @results = Painting.search(params[:query])
query = params[:query]
@results = Tire.search ['news','paintings', 'books'], :page => (params[:page]||1), :per_page=> (params[:per_page] || 3) do
query { string query }
size 100
end
end
end
在我的搜索结果页面中,我有以下代码:
- if @results
- @results.results.each do |result|
= result.title
#pagination
= paginate @results
在我的所有模型中,我都有正确的映射并包括轮胎:
# - - - - - - - - - - - - - - - -
# Elasticsearch
# - - - - - - - - - - - - - - - -
include Tire::Model::Search
include Tire::Model::Callbacks
mapping do
indexes :id, index: :not_analyzed
indexes :title, boost: 100
indexes :slug, boost: 100, as: 'slug'
indexes :content
indexes :image, as: 'image.thumb.url'
indexes :tags, as: 'tags'
indexes :gallery_name, as: 'gallery.name'
indexes :created_at, :type => 'date'
end
我确保我的所有条目都在 Elasticsearch 中正确编入索引。
我遇到的问题是我无法让它工作,最新的错误是:
未定义的方法`current_page'
任何想法将不胜感激。谢谢你。