为什么我只能将 665 个结果中的 10 个文档读入 solr 中的 beans

发布于 2024-10-12 06:43:59 字数 187 浏览 3 评论 0原文

我已使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

羁绊已千年 2024-10-19 06:43:59

当您未定义要获取的行(文档)数量时,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.

枯寂 2024-10-19 06:43:59

默认情况下 Solr 仅返回 10 个文档。如果要获取所有文档,则需要更新 Core 的 solrConfig.xml 文件(路径:/solr/server/solr/core_name/conf/solrConfig.xml):

<requestHandler name="/select" class="solr.SearchHandler">
 <lst name="defaults">
   <str name="echoParams">explicit</str>
   <int name="rows">10000000</int>    <!--you can update it to some large value that is higher than the possible number of rows that are expected.-->
 </lst>
</requestHandler>

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) :

<requestHandler name="/select" class="solr.SearchHandler">
 <lst name="defaults">
   <str name="echoParams">explicit</str>
   <int name="rows">10000000</int>    <!--you can update it to some large value that is higher than the possible number of rows that are expected.-->
 </lst>
</requestHandler>
稍尽春風 2024-10-19 06:43:59

您可能需要编辑 solrconfig.xml。
像这样更改“/select”请求处理程序。

<requestHandler name="/select" class="solr.SearchHandler">
     <lst name="defaults">
       <str name="echoParams">explicit</str>
       <int name="rows">1000</int>   <!-- Change this as you want -->
       <str name="df">text</str>
     </lst>
</requestHandler>

You might have to edit your solrconfig.xml.
There change the "/select" Request Handler like this.

<requestHandler name="/select" class="solr.SearchHandler">
     <lst name="defaults">
       <str name="echoParams">explicit</str>
       <int name="rows">1000</int>   <!-- Change this as you want -->
       <str name="df">text</str>
     </lst>
</requestHandler>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文