java solr 中 getElapsedTime() 和 getQTime() 之间的区别

发布于 2024-10-08 03:35:51 字数 384 浏览 2 评论 0原文

我正在使用 Solr for Java,想知道 getElapsedTime()getQTime() 之间有什么区别,在优化 solr 索引后,我很困惑哪个是用于什么。

   SolrServer solrObject = _JpaTemplate.getSolrServerForCore(Constants.SOLR_CORE1);
   UpdateResponse sorlResponse = solrObject.optimize();
   System.out.print(sorlResponse.getElapsedTime());
   System.out.print(sorlResponse.getQTime());

I'm using Solr for Java and want to know what is the difference between getElapsedTime() and getQTime(), after optimization solr indexes I'm confused which one is for what.

   SolrServer solrObject = _JpaTemplate.getSolrServerForCore(Constants.SOLR_CORE1);
   UpdateResponse sorlResponse = solrObject.optimize();
   System.out.print(sorlResponse.getElapsedTime());
   System.out.print(sorlResponse.getQTime());

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

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

发布评论

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

评论(1

牵你的手,一向走下去 2024-10-15 03:35:51

我很确定 QTime 是在 Solr 中执行查询所需的时间,而 Elapsed Time 是所花费的总时间,包括结果的传输和序列化/反序列化。

I'm pretty sure the QTime is the time it takes for the query to execute in Solr whereas the Elapsed Time is the total time taken including the transmission and serialization / deserialization of the results.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文