Re: Index Question

2005-12-19 Thread praveenl
That helped thanx. Praveen. > Please try using the JDK from Sun. I believe this is the issue > you're having with Ant and compiling Lucene. > > Erik > > > On Dec 18, 2005, at 9:07 PM, [EMAIL PROTECTED] wrote: > >> Thanks for the reply. I thought of doing it. I downloaded the latest >> sou

Re: all stop words in exact phrase get 0 hits

2005-12-19 Thread javier muguruza
What Erik mentions is what I was looking for. I have not had a look at the code yet, but it sounds like it. I'll have a look at the AnalyzerDemo code tomorrow. In my case I guess I could use Chris' approach too, but it will be easier the other one. For the record, my UI has both a 'simple' UI wit

Re: all stop words in exact phrase get 0 hits

2005-12-19 Thread Erik Hatcher
Hoss - the main caveat with this approach is that a user could select a different field from any of the designated text boxes. Putting "subject:foo" in the name text box for example. I think this is one of my biggest issues with QueryParser these days, it exposes too much power. It's like

Re: all stop words in exact phrase get 0 hits

2005-12-19 Thread Chris Hostetter
: > I have moved from my approach: : > Query query = QueryParser.parse("big lucene expression", "afield", : > LuceneHelper.getAnalyzer()); : > : > to building the query based on BooleanQuery, PhareQuery, TermQuery : > etc...But before the analyzer was doing a bunch of work in my incoming : > words

Re: Similarity

2005-12-19 Thread Erik Hatcher
On Dec 19, 2005, at 1:23 PM, Klaus wrote: I) What is exactly written to the index? Is the index just an inverted list? Is there term weight scoring stored? http://lucene.apache.org/java/docs/fileformats.html 1) Get all the documents from the index via the inverted list. Yo

Re: all stop words in exact phrase get 0 hits

2005-12-19 Thread Erik Hatcher
On Dec 19, 2005, at 11:30 AM, javier muguruza wrote: I have moved from my approach: Query query = QueryParser.parse("big lucene expression", "afield", LuceneHelper.getAnalyzer()); to building the query based on BooleanQuery, PhareQuery, TermQuery etc...But before the analyzer was doing a bunch

Similarity

2005-12-19 Thread Klaus
Hi All, I'm new to lucene and a have some questions according to the entire system. I) What is exactly written to the index? Is the index just an inverted list? Is there term weight scoring stored? II) How works the retrieval process work? I guess so: 1) Get all the documents

Re: all stop words in exact phrase get 0 hits

2005-12-19 Thread javier muguruza
I have moved from my approach: Query query = QueryParser.parse("big lucene expression", "afield", LuceneHelper.getAnalyzer()); to building the query based on BooleanQuery, PhareQuery, TermQuery etc...But before the analyzer was doing a bunch of work in my incoming words, and I dont see an easy way

Re: Index Question

2005-12-19 Thread Erik Hatcher
Please try using the JDK from Sun. I believe this is the issue you're having with Ant and compiling Lucene. Erik On Dec 18, 2005, at 9:07 PM, [EMAIL PROTECTED] wrote: Thanks for the reply. I thought of doing it. I downloaded the latest source and tried to build it using ant. I am n