Re: Response time in client was much longer than QTime in tomcat

2013-01-21 Thread pravesh
SOLR's QTime represents actual time it spent on searching, where as your c# client response time might be the total time spent in sending HTTP request and getting back the response(which might also include parsing the results) . Regards Pravesh -- View this message in context: http://lucene.4

Re: Response time in client was much longer than QTime in tomcat

2013-01-17 Thread Mikhail Khludnev
Hello, QTime counts only searching and filtering, but not writing response, which includes retrieving the stored fields (&fl=...). So, it's quite reasonable. On Thu, Jan 17, 2013 at 7:09 AM, 张浓飞 wrote: > I have a solr website with about 500 docs ( 30 fileds defined in schema > ), and a c# cli