solr 数据导入搜索
我是 solr 的新手。我想搜索数据库。我可以导入值并为其建立索引。但是在搜索时,似乎有必要在搜索查询中提及字段名称。如果不指定字段名称,如何完成此操作。
I am new to solr. I want to search database. I am able to import the values and index it.but while searching it seems the field name is necessary to mention in the search query.how can it be done without specifying the field names.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将所有数据导入默认字段。那么您不需要明确提及字段名称。 (尽管如果您愿意,您仍然可以)
Solr 的默认
schema.xml
已经包含使用此类“包罗万象”字段的示例:首先,必须像任何其他字段一样声明该字段:
然后是新字段必须声明为默认字段。每当没有搜索特定字段时,都会搜索此字段:
您还需要一些
copyField
语句,将所有现有字段复制到包罗万象的字段中:因此,每当字段
my_special_field_1
被索引时它的值也添加到text
字段中。作为快捷方式,您可以使用 After 将所有字段复制到
text
字段中,然后您可以在不指定任何字段的情况下执行搜索。
You can import all data into the default field. Then you don't need to explicitly mention the field names. (Although you still can if you want)
The default
schema.xml
with Solr already contains an example for using such a "catchall" field:First the field has to be declared like any other field:
Then this new field has to be declared the default field. Whenever no specific field is searched, this one will be searched:
You also need some
copyField
statements which copy all existing fields into the catchall field:So whenever the field
my_special_field_1
is indexed its value is also added to thetext
field.As a shortcut you can copy all fields into the
text
field withAfter that you can perform searches without specifying any field.