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 搜索引擎的查询框中编写一些查询并询问结果时,它显示找到了一些文档(numFound),但每页仅显示十个文档。如何查看进一步检索的文档。没有像“下一页”或其他东西这样的链接。请告诉我如何查看前十个文件之后的文件
您可以为查询指定rows和start参数:
rows
start
10
0
因此,您可以像这样将它们添加到您的查询中:
http://localhost:8983/solr/core/select?q=*:*&rows=10&start=10