美好的一天,
首先,我不熟悉solr。
我正在使用solr 6.6.6,python 3.7和pysolr(最新版本)。
我有很多文件,格式如下:
pysolr.add({
'first_name': 'Jane',
'last_name': 'Doe',
'contact': {
'phone_number': '0678901122',
'address': 'near the fire place'
}
})
我阅读了yonik.com,medium和lucidwork的一些文档,以了解如何进行查询查询。
我已经尝试了以下方法:
pysolr.search('contact.phone_number:06')
很显然,这很糟糕,并给了我错误:[Reason: undefined field contact.zip_code]
在上述示例中,我想了解如何从子元素联系中检索值。