Re: Solrj 4.7.2 - slowing down over time

2016-05-19 Thread Roman Slavik
Hi Ahmet, thanks for your response, I appreciate it. I thought that EmbeddedSolrServer is just wrapper around Solr core functionality. Solr 4.7.2 is (was?) distributed as war file and I didn't found any mention about compatibility problem with Tomcat. Maybe with jetty it would work slightly faste

Re: [Solrj 4.0] How use JOIN

2013-02-11 Thread Roman Slavik
Hi, thanks for advice. But I need to use parent_condition and child_condition in same time. Parent condition is: (name:Thomas AND age:40) Child condition: (name:John AND age:17) join from=parent to=id So something like: (name:Thomas AND age:40) AND {!join from=parent to=id}(name:John AND age:17)

[SOLR 4.0] Number of fields vs searching speed

2013-01-27 Thread Roman Slavik
Hi guys, what is relation between number of indexed fields and searching speed? For example I have same number of records, same searching SOLR query but 100 indexed fields for each record in case 1 and 1000 fields in case 2. I's obvious that searching time in case 2 will be greater, but how much?

Re: [Solrj 4.0] How use JOIN

2012-12-05 Thread Roman Slavik
Nobody? I just found nested queries can be used (http://mullingmethodology.blogspot.cz/2012/03/adventures-with-solr-join.html). But I don't like this solution, it is too complicated and not very readable ... So is there any way how use JOIN with Solrj? Any idea? :) -- View this message in con