有没有办法使用查询工具查看仅索引但未通过 solr 管理面板存储的搜索文档字段?
Is there a way to view search document fields that are only indexed but not stored via the solr admin panel using the query tool?
我想在solr admin查询工具中查看一个solr搜索文档的索引但未存储的字段,有没有这方面的规定?
示例字段配置:
<field name="product_data" type="string" indexed="true" stored="false" multiValued="false" docValues="true" />
如果您使用的是模式版本 1.6,Solr 将自动从存储的 docValues 中获取值,即使字段本身设置为 stored="false"
。在 fl
中包含字段名称以获取值。
但是,即使您正在寻找为文档/字段/值编制索引的实际标记,使用分析页面通常是首选方式,因为它允许您调整值并快速查看响应。如果您想探索实际的索引标记,Luke Request Handler / Tool 很有用。
我想在solr admin查询工具中查看一个solr搜索文档的索引但未存储的字段,有没有这方面的规定?
示例字段配置:
<field name="product_data" type="string" indexed="true" stored="false" multiValued="false" docValues="true" />
如果您使用的是模式版本 1.6,Solr 将自动从存储的 docValues 中获取值,即使字段本身设置为 stored="false"
。在 fl
中包含字段名称以获取值。
但是,即使您正在寻找为文档/字段/值编制索引的实际标记,使用分析页面通常是首选方式,因为它允许您调整值并快速查看响应。如果您想探索实际的索引标记,Luke Request Handler / Tool 很有用。