pg_search似乎忽略了对于associated_against

时间:2016-06-29 14:29:04

标签: ruby-on-rails postgresql pg-search

我想弄清楚为什么using规范不适用于associated against字段。我的代码是:

 include PgSearch

 pg_search_scope :search,
    { 
     :associated_against => {
       :client => [:name, :email],
     },
     :against => [:description],
     using: {
       tsearch: {},
       trigram:    {threshold:  0.1}
     }
    }

对于字段description,效果很好。

这里有任何提示吗?

提前致谢。

0 个答案:

没有答案