我是 solr 的新手,我正在尝试建立一个问答系统。我已经索引了一些 Wikipedia 页面,例如 Nikola Tesla。 https://en.wikipedia.org/wiki/Nikola_Tesla
我的问题是:有可能以及如何在 Solr 中输入查询作为问题?
我将维基百科页面按“内容”(对应于 SectionTitle)拆分,所以......对于查询,pageTitle:Nikola Tesla
我的结果是:
"response":{"numFound":23,"start":0,"docs":[
{
"sectionTitle":"First Paragraph",
"pageTitle":"Nikola Tesla",
"text":["Born and raised in the Austrian Empire, Tesla received an advanced education in engineering and physics in the 1870s and gained practical experience in the early 1880s working in telephony and at Continental Edison in the new electric power industry.]},
{
"sectionTitle":"Early years",
"pageTitle":"Nikola Tesla",
"text":["Nikola Tesla was born an ethnic Serb in the village Smiljan, Lika county, in the Austrian Empire (present day Croatia), on 10 July [O.S. 28 June] 1856. etc..]}]
}}
我schema
的如下:
<field name="id" type="string" indexed="true" required="true" stored="true"/>
<field name="pageTitle" type="text_en" indexed="true" stored="true"/>
<field name="sectionTitle" type="text_en" indexed="true" stored="true"/>
<field name="title" type="text_en" indexed="true" stored="true"/>
<field name="text" type="text_general" indexed="true" stored="true"/>
是否可以将查询键入为问题?以及如何显示与问题相似的结果? 例如,看上面...
如何键入查询When Nikola Tesla born?
并获取段落:
"sectionTitle":"Early years",
"pageTitle":"Nikola Tesla",
"text":["Nikola Tesla was born an ethnic Serb in the village Smiljan, Lika county, in the Austrian Empire (present day Croatia), on 10 July [O.S. 28 June] 1856."]
或查询Where Nikola Tesla born?
/Where Nikola Tesla raised?
并获得:
“在奥地利帝国出生和长大,特斯拉得到了……”?
提前致谢。