Re: Solrj 4.7.2 - slowing down over time

2016-05-19 Thread Roman Slavík
stein > http://joelsolr.blogspot.com/ > > On Wed, May 18, 2016 at 10:39 AM, Roman Slavík <slaav...@gmail.com> wrote: > > > Hi all, > > > > we're using solr in our application and have problem that both searching > > and indexing is slowing down over ti

Solrj 4.7.2 - slowing down over time

2016-05-18 Thread Roman Slavík
Hi all, we're using solr in our application and have problem that both searching and indexing is slowing down over time. Versions: - Java 1.7 Solr 4.7.2 Lucene 4.1 (luceneMatchVersion param in solrconfig.xml) App architecture: - We don't use solr as standalone

[Solrj 4.0] How use JOIN

2012-12-04 Thread Roman Slavík
Hi, I can't found any good example how use Join function with Solrj 4.0 api. Let's have this example data: doc field name=id1/field field name=nameThomas/field field name=age40/field /doc doc field name=id2/field field name=nameJohn/field field name=age17/field field

[Solrj 4.0] No group response

2012-11-30 Thread Roman Slavík
Hi guys, I have problem with grouping in Solr 4.0 using Solrj api. I need this: search some documents limited with solr query, group them by one field and return total count of groups. There is param 'group.ngroups' for adding groups count into group response. Sounds easy, so I wrote

Re: Solr4 BETA group.ngroups count

2012-08-27 Thread Roman Slavík
Hi, did you find where is problem? Dne 23.8.2012 16:40, lenz...@gfi.ihk.de napsal(a): Hello, I have a problem using grouped queries and the 'group.ngroups' parameter. When I run the following request myURL/select?q=myQuerygroup=truegroup.field=personIdgroup.ngroups=truewt=xml the response

Re: Group count in SOLR 3.3

2012-08-26 Thread Roman Slavík
Thanks, I found GroupResponse was added in Solr 3.4 so I have to update version :) Roman Dne 24.8.2012 18:09, Erick Erickson napsal(a): 3.6 has a getNGroups, does that do what you want? Best Erick On Thu, Aug 23, 2012 at 2:23 AM, Roman Slavík sla...@effectiva.cz wrote: Hi guys, we

Group count in SOLR 3.3

2012-08-23 Thread Roman Slavík
Hi guys, we are using SOLR 3.3 with Solrj inside our java project. In actual version we had to add some grouping support, so we add parameters into SolrQuery object like this: query.setParam(GroupParams.GROUP, true); query.setParam(GroupParams.GROUP_MAIN, true);