Re: How to use Solr in java program

2008-03-30 Thread khirb7
hossman wrote: : I am new user of Solr and I want to know how can I use Solr in my own java http://wiki.apache.org/solr/SolJava : program, what are the different possibilities of using solr. Is a web : servlet container is ncessary to run and use Solr, Is servlet Container as :

Re: How to use Solr in java program

2008-03-30 Thread Chris Hostetter
: I recommend using Solr as a webservice, even if your client is Java. but : there are options for embedding Solr directly into your applications using : thank you hossman for your response,I have another question : I have writen : a small java program using sockets to send an http query

Re: DataImportHandler and MultiCore

2008-03-30 Thread Shalin Shekhar Mangar
Hey Jon, I have just added an example to the DataImportHandler wiki page which uses a multicore solr home along with different import configurations for each core. It may prove useful for you to help plan your own implementation. On Tue, Mar 18, 2008 at 9:05 AM, Shalin Shekhar Mangar [EMAIL

Re: DataImportHandler and MultiCore

2008-03-30 Thread Jon Baer
Thank you Shalin ... *Extremely* helpful ... very much appreciated. - Jon On Mar 30, 2008, at 2:55 PM, Shalin Shekhar Mangar wrote: Hey Jon, I have just added an example to the DataImportHandler wiki page which uses a multicore solr home along with different import configurations for

Re: search for non empty field

2008-03-30 Thread Matt Mitchell
I'm looking for the exact same thing. On Sun, Mar 30, 2008 at 8:45 PM, Ismail Siddiqui [EMAIL PROTECTED] wrote: Hi all, I have a situation where i have to filter result on a non empty field . wild card wont work as it will have to match with a letter. How can I form query to return result

Re: search for non empty field

2008-03-30 Thread Erik Hatcher
Documents with a particular field can be matched using: field:[* TO *] Or documents without a particular field with: -field:[* TO *] An empty field? Meaning one that was indexed but with no terms? I'm not sure about that one. Seems like Hoss replied to something similar on