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
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
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
: > 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
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
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
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
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
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