与Elasticsearch,Tire和Kaminari分页

时间:2013-03-12 16:28:22

标签: ruby-on-rails pagination elasticsearch tire kaminari

我遇到了将搜索结果分页以与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'

任何想法都将不胜感激。谢谢。

2 个答案:

答案 0 :(得分:3)

你能试试吗???当我使用per_page选项时,我遇到了类似的问题。所以,我转向了轮胎提供的尺寸选项。我不确定出了什么问题。但是,明确设置并使用 from和size 为我做了诀窍......

class SiteController < ApplicationController
  def search
    # @results = Painting.search(params[:query])
    options = { :page => (params[:page] || 1), :size => 100 }
    query = params[:query]
    @results = Tire.search ['news','paintings', 'books'], options do
      query { string query }
      from options[:size].to_i * (options[:page].to_i-1)
    end
  end
end

答案 1 :(得分:0)

Tire有包含在其lib中的Will-paginate gem的方法所以我更喜欢它而不是Kaminari gem。如果在任何情况下你还想和Kaminari在一起,请收集轮胎搜索的结果。

@results = @results.all.to_hash

paginate @results