RE: Apache Solr 3.6.

2014-04-23 Thread Suresh Soundararajan
Vignesh, Update the fl parameter with the keyword field you defined in your schema file which will return the keywords attached to the document. Thanks, SureshKumar.S From: vignesh Sent: Wednesday, April 23, 2014 1:04 PM To: solr-user@lucene.apache.org Sub

RE: No route to host

2014-04-09 Thread Suresh Soundararajan
You are running the solr in the built in jetty server or tomcat ? First check http://:8080/ is working. If that working then check with http://:8080/solr, which will display the solr admin page. From this page you can check the collection1 core is available or not and also you can view the log

RE: How to delete documents

2014-03-31 Thread Suresh Soundararajan
Kaushik, Before delete the rows in the table, collect the primary id of the table related to the solr index and fire a solr query by deleteby ID and pass the collected ids. This will remove the documents in the solr index. Thanks, SureshKumar.S From: Ka

RE: AutoSuggest like Google in Solr using Solarium Client.

2014-03-17 Thread Suresh Soundararajan
Hi Sohan, The best approach for the auto suggest is using the facet query. Please refer the link : http://solr.pl/en/2010/10/18/solr-and-autocomplete-part-1/ Thanks, SureshKumar.S From: Sohan Kalsariya Sent: Monday, March 17, 2014 8:14 PM To: solr-use

RE: Network path for data directory

2014-03-13 Thread Suresh Soundararajan
Prasi, It is not possible to use the index files of one solr instance for the second instance. The reason behind this is while booting the solr instance it will get lock the schema and index files to make sure other instance won't update the index and schema files. As you mentioned like want t

RE: Setting up solr on production server

2014-02-20 Thread Suresh Soundararajan
You can go ahead with Tomcat by deploying the solr war in it. It is highly scalable. Thanks, SureshKumar.S From: Jay Potharaju Sent: Friday, February 21, 2014 11:10 AM To: solr-user@lucene.apache.org Subject: Setting up solr on production server Hi, I '