RE: PathHierarchyTokenizerFactory and facet_count

2015-09-28 Thread Moen Endre
en all values of the Parameter field should be included in your faceting. But, perhaps not all facet buckets are being returned to you - hence try facet.limit = 100 or such Upayavira On Mon, Sep 28, 2015, at 11:47 AM, Moen Endre wrote: > How does facet_count work with a facet field

PathHierarchyTokenizerFactory and facet_count

2015-09-28 Thread Moen Endre
How does facet_count work with a facet field that is defined as solr. PathHierarchyTokenizerFactory? I have multiple records that contains field Parameter which is of type PathHierarchyTokenizerFactory. E.g "Parameter": [ "EARTH SCIENCE>OCEANS>OCEAN TEMPERATURE>WATER TEMPERATUR

RE: testing with EmbeddedSolrServer

2015-09-01 Thread Moen Endre
5:02 To: solr-user Subject: Re: testing with EmbeddedSolrServer Endre, As I suggested before, consider to avoid test framework, just put all code interacting with EmbeddedSolrServer into main() method. On Mon, Aug 31, 2015 at 12:15 PM, Moen Endre wrote: > Hi Mikhail, > > Im trying t

RE: testing with EmbeddedSolrServer

2015-08-31 Thread Moen Endre
t is over. or add synchronous=true parameter to full-import command it should switch to synchronous mode: https://github.com/apache/lucene-solr/blob/trunk/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/DataImportHandler.java#L199 Take care On Tue, Aug 25, 2015 at 4:41

testing with EmbeddedSolrServer

2015-08-25 Thread Moen Endre
Is there an example of integration-testing with EmbeddedSolrServer that loads data from a data importhandler - then queries the data? Ive tried doing this based on org.apache.solr.client.solrj.embedded.TestEmbeddedSolrServerConstructors. But no data is being imported. Here is the test-class iv