0
使用Solr 5.2.1Solr是否支持每個父項的多種類型的嵌套文檔?
父母可以有多種類型的嵌套文檔,或者是父母文檔中的一種類型的子文檔嗎?
因此,例如
gathering: {
location: { name: "The park", city: "New York", country: "United States Of America", ...}
people: [
{ first_name: "John", last_name: "Smith", age: 21, ... },
{ first_name: "Jane", last_name: "Doe", age: 19, ...}
]
}
是否有可能使用Solr 5.2.x或更新?
你知道是否可以使用SolrJ庫嗎?當我在我的Solr模型中有超過1個孩子(註解@Field(child = true))時,我得到'不能有多於一個Field,並且child = true' – doublemc