Re: Solr query is very slow -- guidance would be much appreciated

2019-08-22 Thread Erick Erickson
If you’re literally including the quotes, i.e. q=“one two”, then you’re doing phrase searches which are more complex and will take longer. q=field:one AND field:two is a straight boolean query. Also, what query parser are you using? If it’s edismax, then you’re searching across multiple fields.

Solr query is very slow -- guidance would be much appreciated

2019-08-22 Thread Muthu Thenappan
Hi, when I run "q=one" the Qtime is around 200ms however when I run 2 or 3 words the run time exponentially increases eg: "q=two words" or "q=apple orange berry" resulting in 3s to 10s. I have indexed around 10 milion document with each document containing around 100 words. I am using that