java solr 中 getElapsedTime() 和 getQTime() 之间的区别
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我很确定 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.