gpt4 book ai didi

ruby-on-rails - 具有Elastic gem的带有胎面 gem 的嵌入式文档的索引字段?

转载 作者:行者123 更新时间:2023-12-03 02:09:17 24 4
gpt4 key购买 nike

如何使用Tyre gem为ElasticSearch的语法索引嵌入式文档中的特定字段?

我已经为嵌入许多答案的Question模型尝试了以下内容,并且我只希望对Answer模型上的描述字段建立索引。

搜索应与存储的答案说明匹配的文本不会返回任何结果。顺便说一下,我正在使用Mongoid作为MongoDB驱动程序。

 mapping do
indexes :id, :index => :no
indexes :created_at, :index => :no
indexes :updated_at, :index => :no
indexes :title, :index => :analyzed
indexes :description, :index => :analyzed
indexes :page_views, :index => :no
indexes :asker, :index => :no
indexes :tags, :index => :analyzed
indexes :answers do
indexes :id, :index => :no
indexes :description, :index => :analyzed
indexes :answerer, :index => :no
indexes :created_at, :index => :no
indexes :updated_at, :index => :no
end
indexes :comments, :index => :no
indexes :votes, :index => :no
indexes :up_count, :index => :no
indexes :down_count, :index => :no
indexes :vote_score, :index => :no
end

最佳答案

我认为您需要先指定每个字段的类型,然后才能设置“index”参数。 (我可能错了)

我认为这行不通:

"properties": {
"description": {
"index": "analyzed"
}
}

尝试以下方法:
"properties": {
"description": {
"type": "string",
"index": "analyzed" //not really needed as the default is analyzed
}
}

您能否使用以下方法检查 map :
curl -XGET 'http://localhost:9200/your_index/your_type/_mapping'

发布输出,我们将查看elasticsearch是否配置正确。

祝好运!

关于ruby-on-rails - 具有Elastic gem的带有胎面 gem 的嵌入式文档的索引字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17894566/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com