为什么我只能将 665 个结果中的 10 个文档读入 solr 中的 beans
我已使用 DataImportHandler 将数据库表索引到 solr 中。现在,当我查询服务器时,它显示找到的结果数为 665。但是当我尝试将其分配给像 List itemList = rsp.getBeans(Item.class) 这样的 bean 时,它只给我 10 个结果。
有人可以帮我解决这个问题吗?
提前致谢。
I have indexed my database tables into solr using DataImportHandler. Now when I query the server it shows me that the number of results found 665. But when i try to assign it to beans like List itemList = rsp.getBeans(Item.class), it is giving me only 10 results.
Can some one help me out on this.
Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
当您未定义要获取的行(文档)数量时,Solr 默认获取 10 个文档,如 在文档中进行了解释。
When you don't define the amount of rows (documents) to fetch, Solr defaults to fetching 10 documents, as explained in the docs.
默认情况下 Solr 仅返回 10 个文档。如果要获取所有文档,则需要更新 Core 的 solrConfig.xml 文件(路径:/solr/server/solr/core_name/conf/solrConfig.xml):
By default Solr returns only 10 Documents. If you want to fetch all documents, you will need to update solrConfig.xml file of Core (path : /solr/server/solr/core_name/conf/solrConfig.xml) :
您可能需要编辑 solrconfig.xml。
像这样更改“/select”请求处理程序。
You might have to edit your solrconfig.xml.
There change the "/select" Request Handler like this.