Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只需要从 solr 返回方面计数。所以我基本上想搜索所有文档并返回构面计数,但我不想返回任何搜索结果。这可能吗?
谢谢
设置facet=true将启用分面,设置rows=0将阻止返回任何结果。方便地numFound显示找到了多少结果。
facet=true
rows=0
numFound
我想显而易见的解决方案是使用通配符进行搜索并指定您希望返回零结果。
到目前为止,这是我的解决方案。
因此,根据我的理解,如果我需要获取分页系统中所有文档的方面计数,我需要提出两个请求(选择): - 第一个获取所有文档的方面计数。 - 第二个是从当前页面获取文件。