Solr/Solrj:如何确定索引中的文档总数?

发布于 2024-10-17 22:46:54 字数 100 浏览 2 评论 0原文

如何使用 Solrj 确定 Solr 索引中的文档总数?

经过我自己几个小时的搜索,我实际上有了答案(如下所示);我只是发布这个问题,以便其他人可以更轻松地找到解决方案。

How can I determine the total number of documents in a Solr index using Solrj?

After hours of searching on my own, I actually have an answer (given below); I'm only posting this question so others can find the solution more easily.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(5

书间行客 2024-10-24 22:46:54

这是我正在使用的。这是规范的吗?有更好的办法吗?

    SolrQuery q = new SolrQuery("*:*");
    q.setRows(0);  // don't actually request any data
    return server.query(q).getResults().getNumFound();

Here's what I'm using. Is this canonical? Is there a better way?

    SolrQuery q = new SolrQuery("*:*");
    q.setRows(0);  // don't actually request any data
    return server.query(q).getResults().getNumFound();
请别遗忘我 2024-10-24 22:46:54

您发送查询 *:* 的答案可能是最好、最通用的解决方案。特别是如果您使用 SolrCloud。但是,还有一个替代解决方案,Solr Core Admin API< /a>

Your answer of sending the query *:* is probably the best, most general solution. Especially if you are using SolrCloud. However, there is an alternate solution, the Solr Core Admin API

简美 2024-10-24 22:46:54

粘贴整个 curl

curl -s --negotiate -u: 'hostname:8983/solr/my_collection/query?q=*:*&rows=0' | jq '.response | .numFound'
1868000278

Pasting the whole curl:

curl -s --negotiate -u: 'hostname:8983/solr/my_collection/query?q=*:*&rows=0' | jq '.response | .numFound'
1868000278
浪菊怪哟 2024-10-24 22:46:54

这是我使用 JSON/PHP 获取总文档的方法,希望对您有所帮助

// Get total number of documents in solr
$solrObj = file_get_contents("http://HOSTNAME:8983/solr/COLLECTION 
NAME/select?q=*:*&rows=0&wt=json");
// var_dump(json_decode($solrObj));
$res_obj = json_decode($solrObj);
$numDocs = $res_obj->response->numFound; 
echo "Total number docs found!: ".$numDocs."<br />";

Here's what I use to get total docs using JSON/PHP hope this helps

// Get total number of documents in solr
$solrObj = file_get_contents("http://HOSTNAME:8983/solr/COLLECTION 
NAME/select?q=*:*&rows=0&wt=json");
// var_dump(json_decode($solrObj));
$res_obj = json_decode($solrObj);
$numDocs = $res_obj->response->numFound; 
echo "Total number docs found!: ".$numDocs."<br />";
以可爱出名 2024-10-24 22:46:54

solr numFound响应

根据您的使用方式,请注意可用的格式选项。对于我的情况,XML 是理想的选择。

http://localhost:8983/solr/drupal/select?q=*%3A*&rows=0&wt=xml

solr numFound response

Depending how you are using it, notice the format options available. For my case XML is ideal.

http://localhost:8983/solr/drupal/select?q=*%3A*&rows=0&wt=xml
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文