Solritas is a way to view Solr responses in a more user friendly way,
it isn't going to help with the underlying suggest mechanism, just the
presentation of it.
Erik
On Jun 19, 2010, at 3:28 AM, Andy wrote:
Hi,
I've seen some posts on using SOLR-1316 or Solritas for
autocomplete
Does anyone know a solution to this problem? I've already tried
autoReconnect=true and it doesn't appear to help. This happened 34 hours
into my full-import... ouch!
org.apache.solr.handler.dataimport.DataImportHandlerException:
com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: The last p
"The last packet sent successfully to the server was 124,896,004
milliseconds ago. is longer than the server configured value of
'wait_timeout'. You should consider either expiring and/or testing
connection validity before use in your application"
Sounds like MySQL.
Try to increase wait_timeout t
It seems that when importing via DIH the "Total Documents Processed" status
message does not appear when there are two entities for a given document. Is
this by design?
--
View this message in context:
http://lucene.472066.n3.nabble.com/IDH-Total-Documents-Processed-is-missing-tp909325
I'm not going to be too much specific help for Windows here since I'm
running on a Mac, but...
All of this is done through ant, there's some help at the "how to
contribute" page, but nothing I see windows-specific:
http://wiki.apache.org/solr/HowToContribute
Which means you have to have your envi
Working with SolrJ I'm doing a query using the StatsComponent, and the
stats.facet parameter. I'm not able to set multiple fields for the
"stats.facet" parameter using SolrJ. Here is the query I'm trying to create:
http://localhost:8983/solr/select/?q=*:*&stats=on&stats.field=fieldForStats&stats.f
: *solrQuery.setParam("stats.facet", "fieldA");
: solrQuery.setParam("stats.facet", "fieldB");
: solrQuery.setParam("stats.facet", "fieldC");*
:
: But when I try to retrieve the "sum" values, it seems as if only the LAST
: setParam I called on "stats.facet" is taking. So in this case
Or simply use add(), because setParam overrides existing hashMap key:
solrQuery.setParam("stats.facet", "fieldA");
solrQuery.add("stats.facet", "fieldB");
solrQuery.add("stats.facet", "fieldC");
--
Jan Høydahl, search solution architect
Cominvent AS - www.cominvent.com
Training in Europe
Thank you so much for your help... I will try it...
--
View this message in context:
http://lucene.472066.n3.nabble.com/Indexing-HTML-files-in-SOLR-tp896530p910555.html
Sent from the Solr - User mailing list archive at Nabble.com.