Re: Problem adding new requesthandler to solr branch_3x

2011-03-05 Thread Paul Rogers
Koji many thanks for that. regards Paul On 5 March 2011 00:12, Koji Sekiguchi k...@r.email.ne.jp wrote: bool hl=true/ If this amended to read: bool hl=truetrue/bool the solr-example starts fine. Paul, It should be bool name=hltrue/bool. Koji -- http://www.rondhuit.com/en/

Re: Location of Main Class in Solr?

2011-03-05 Thread Koji Sekiguchi
(11/03/04 3:30), Anurag wrote: I searched SolrIndexSearcher.java file but there is no main class. I wanted to know as to where this class resides. Can i call this main class (if it exists) using command line options in terminal , rather than through war file? Kumar, I think you may want to

Re: Help please - recursively indexing lots and lots of text files

2011-03-05 Thread Estrada Groups
Nutch will also handle this but I'd probably stick with the DIH as Steve suggested. On windows it's pretty easy to get a list of all the txt file by using dir /b/s *.txt files.txt Just my $0.02 ;-) Adam Sent from my iPhone On Mar 4, 2011, at 5:52 PM, Steven A Rowe sar...@syr.edu wrote:

Re: Location of Main Class in Solr?

2011-03-05 Thread Anurag
Thanks. On Sat, Mar 5, 2011 at 7:58 PM, Koji Sekiguchi [via Lucene] ml-node+2638122-740990375-146...@n3.nabble.com wrote: (11/03/04 3:30), Anurag wrote: I searched SolrIndexSearcher.java file but there is no main class. I wanted to know as to where this class resides. Can i call this

Re: Location of Main Class in Solr?

2011-03-05 Thread Anurag
Do you mean that a .class(DOT class) file is responsible for executing the solr server, hence no Public Static void main is present anywhere.? Actually i want to play with the Searcher.java file , but i am finding difficulty as the Searcher file is very big and any changes will lead to

Re: More Date Math: NOW/WEEK

2011-03-05 Thread Andreas Kemkes
Thank you for the clarification. Personally, I believe it is correct for a week to start in a different month/year and it is certainly what I would expect. As you pointed out, these time units don't form a strictly ordered set (...yearmonthday..., weekday...). Complications arise from the

-ignore words not working?

2011-03-05 Thread Andy Newby
Hi, I'm trying to work out why this query won't work: ((title:man)) OR ((keywords:man)) OR ((description:man)) AND (has_gif:1) AND (category_name:Clip Art) AND ((-title:men) AND (-keywords:men) AND (-description:men)) If I remove the last bit, so we have: ((title:man)) OR ((keywords:man)) OR

Re: Solr chained exclusion query

2011-03-05 Thread Michael Sokolov
It sounds as if what you have done is to index sales events (with fields customer, product, and date), and now you want to retrieve customers, which are not documents. The most natural way to handle this is to index customers as documents (with fields cust id, last sale date). Whenever a new

Re: memory leak during undeploying

2011-03-05 Thread Lance Norskog
Classes get saved in PermGen and are never freed. Apparently there are JVM options to fix this. I'm not sure if the old String.intern() use in Lucene had this problem. Lance On Wed, Mar 2, 2011 at 10:23 PM, Chris Hostetter hossman_luc...@fucit.org wrote: : When I did heap analysis, the culprit