0

轮胎宝石中是否有任何类似于Thinking_Sphinx 属性中索引的属性(具有)的东西轮胎 的过滤器是否具有相同的目的?请在这个问题上帮助我。

4

1 回答 1

0

我对Thinking Sphinx并不是特别熟悉,但是...

在这里查看:

https://github.com/karmi/tire

class Article < ActiveRecord::Base
  # ...

  def to_indexed_json
    names      = author.split(/\W/)
    last_name  = names.pop
    first_name = names.join

    {
      :title   => title,
      :content => content,
      :author  => {
        :first_name => first_name,
        :last_name  => last_name
      }
    }.to_json
  end
end

在索引中提供自定义定义允许您在发送的链接中使用 :as 功能。

为了过滤,您需要添加一个过滤器,然后应用它,例如通过一个方面。

于 2013-02-13T04:36:02.080 回答